Skip to content

Instantly share code, notes, and snippets.

@hoetmaaiers
Last active February 20, 2016 09:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hoetmaaiers/366603ec6ffb4293658b to your computer and use it in GitHub Desktop.
Save hoetmaaiers/366603ec6ffb4293658b to your computer and use it in GitHub Desktop.

WEB 101 workhop part 1 - prerequisites

If you want to join the first workshop and get your hands dirty in the handson part, ensure the following is ready on your computer:

Git

# Check you have what it takes
$ which git 

# GOOD
# Should return something like '/usr/bin/git'.

# NO NO NO
# If it returnS 'git not found', you should ensure git is installed.

Install with homebrew

Through homewbrew:

$ brew install git

Install with installer package

Install Git with the installer package from http://www.git-scm.com/downloads

Node.js

# Check you have what it takes
$ which node

# GOOD
# Should return something like '/usr/local/bin/node'.

# NO NO NO
# If it return 'node not found', you should ensure node.js is installed.

Install with homebrew

Through homewbrew:

$ brew install node

Install with installer package

Install Node.js with the installer package from https://nodejs.org/en/download/

Code editor

Bring a suitable code editor. An IDE like XCode or Eclipse might work, though we suggest pciking a more light editor for the workshop:

Google Chrome

A part of the workshop will cover Google Chrome's Web Inspector. If you don't have Chrome installed, go download it here: https://www.google.com/chrome/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment