Installing NodeJS
Linux
Manual install of NodeJS:
cd /tmp
wget http://nodejs.org/dist/v6.4.0/node-v6.4.0.tar.gz
tar -xzf node-v6.4.0.tar.gz
cd node-v6.4.0
./configure
make
sudo make install
OS X
Using Homebrew:
brew install node
Using MacPorts:
sudo port install npm
Installing Related Tools
We need a few tools to be installed:
sudo npm -g install yo grunt-cli gulp bower