Skip to content

Backports.debian.org

Roman Ožana edited this page Jan 5, 2015 · 10 revisions

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 -L --insecure https://www.npmjs.org/install.sh | bash
Clone this wiki locally