This is just a personal gist for installing node and npm
Install nodejs from the repo / package manager of your choice
$ sudo apt-get install nodejs
When you install node in ubuntu, it doesn't install as node rather it install as nodejs so we need to make a symbolic link from nodejs to node
$ sudo ln -s /usr/bin/nodejs /usr/bin/node