Categories: Uncategorized

[CoffeeScript][Jasmine-node]Setup

Only Command
# Install pythonbrew
$ curl -kL http://xrl.us/pythonbrewinstall | bash
$ pythonbrew install 2.7.2

#Install node.js
$ vim ~/.bash_profile
[[ -s $HOME/.pythonbrew/etc/bashrc ]] && source $HOME/.pythonbrew/etc/bashrc
$source ~/.bash_profile
$pythonbrew switch 2.7.2
$git clone git://github.com/creationix/nvm.git ~/.nvm
$nvm install v0.8.7
$source ~/.nvm/nvm.sh
$nvm use v0.8.7

#Create .npmrc
$vim ~/.npmrc
registry = http://registry.npmjs.org/ 

#Install coffee-script
$npm install coffee-script
$npm install jasmine-node
$./node_modules/.bin/coffee

#Add path to node_module
$vim ~/.bash_profile
PATH=$PATH:$HOME/bin:$HOME/node_modules/.bin:./node_modules/.bin
$source ~/.bash_profile

#You can use commands below
$coffee -c test-coffee.coffee
$jasmine-node --coffee spec/
zuqqhi2