Skip to content
This repository was archived by the owner on Apr 22, 2023. It is now read-only.

Backports.debian.org

Shawn Zhou edited this page Feb 12, 2014 · 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 https://www.npmjs.org/install.sh | sh
Clone this wiki locally