Tech Tips

  1. Uncategorized
  2. 127 view

[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/

Uncategorized recent post

  1. Run Amazon FreeRTOS on M5Stack Core2 for AWS …

  2. Udacity Self-Driving Car Engineer Nanodegree …

  3. Install sbt 1.0.0 and run sample template

  4. Visualization of Neural Network and its Train…

  5. [Machine Learning]Created docker image includ…

関連記事

PAGE TOP