This is the way I installed nodejs in ubuntu 14.04 LTS:
sudo add-apt-repository ppa:chris-lea/node.js sudo apt-get install nodejs
When I c
Assuming you already have npm package and want to upgrade nodejs version:
sudo npm install -g n sudo n latest
In case you don't have installed npm package then itstall it using following command:
sudo apt-get install npm
On linux.