Skip to content

Instantly share code, notes, and snippets.

@dannguyen
Last active December 14, 2015 10:48
Show Gist options
  • Save dannguyen/5074356 to your computer and use it in GitHub Desktop.
Save dannguyen/5074356 to your computer and use it in GitHub Desktop.
Setting up my computers for coffee
# remove current npm
npm uninstall npm -g
brew uninstall node
# install latest node
brew install node
## install coffeescript
npm install -g coffee-script
## install mocha
## http://visionmedia.github.com/mocha/
npm install -g mocha
## install chai
## http://chaijs.com/
npm install -g chai
## phantomjs
brew update && brew install phantomjs
## set path in .bash_profile
## export NODE_PATH="/usr/local/lib/node"
## export PATH="/usr/local/share/npm/bin:$PATH"
## brunch time!
## https://github.com/brunch/brunch
npm install -g brunch
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment