How to install node.js and NPM (node package manage) on Ubuntu 10.x
$ sudo apt-get update
$ sudo apt-get install git-core
$ sudo apt-get install build-essential openssl libssl-dev
Check if Node.js is installed
Make sure you have CURL installed :
$ sudo apt-get install curl
Intall NPM for node.js
curl <a href="http://npmjs.org/install.sh" title="http://npmjs.org/install.sh">http://npmjs.org/install.sh</a> | sh
Then install NPM
Source : http://www.giantflyingsaucer.com/blog/?p=1688
Post new comment