Powered by Blogger.

Installing NODEJS and NPM on DEBIAN


INSTALL NODE ONLY

Run the following (as root):
echo "deb http://ftp.us.debian.org/debian wheezy-backports main" >> /etc/apt/sources.list
apt-get update
apt-get install nodejs

INSTALL NODE AND NPM

Run the following (as root):
echo "deb http://ftp.us.debian.org/debian wheezy-backports main" >> /etc/apt/sources.list
apt-get update
apt-get install nodejs-legacy
curl https://npmjs.org/install.sh | sh

No comments