Skip to content
ktmrakesh edited this page Oct 2, 2014 · 4 revisions

Install GIT HUB

sudo apt-get install git-core

Download nvm

git clone git://github.com/creationix/nvm.git ~/.nvm

Add this line to .bashrc (if not added already added)

[[ -s "$HOME/.nvm/nvm.sh" ]] && . "$HOME/.nvm/nvm.sh"

Install version of node.js

In this example I am going to install node v0.4.12. We first need open new bash session. You can also do this by typing bash again.

bash
nvm install v0.10.29 #This takes a while if you have low speed internet connection.

Adding Client dev dependencies (GULP)

npm install -g gulp 

Installing SASS

First sudo apt-get update and install dependencies

sudo apt-get install git-core curl zlib1g-dev build-essential libssl-dev libreadline-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt1-dev libcurl4-openssl-dev python-software-properties

Then install rvm to manage ruby versions

sudo apt-get install libgdbm-dev libncurses5-dev automake libtool bison libffi-dev
curl -L https://get.rvm.io | bash -s stable
source ~/.rvm/scripts/rvm
echo "source ~/.rvm/scripts/rvm" >> ~/.bashrc

Install ruby particular version and check!!!

rvm install 2.1.2
rvm use 2.1.2 --default
ruby -v

###Install SASS gem install sass ###Install Express.JS npm install express --save ###Install Jade npm install ejs --save