Installing NODE.js in Debian/Ubuntu
This is a quick helper about how to install node.js and npm in Debian or Ubuntu.
$ sudo apt-get install curl
$ apt-get install -y build-essential
$ curl -sL https://deb.nodesource.com/setup | sudo bash -
$ sudo apt-get install -y nodejs
Happy Hack !