Skip to content

Instantly share code, notes, and snippets.

@rogerdudler
Created May 13, 2011 11:43
Show Gist options
  • Save rogerdudler/970396 to your computer and use it in GitHub Desktop.
Save rogerdudler/970396 to your computer and use it in GitHub Desktop.
Node JS & NPM Installation
sudo mkdir -p /usr/local/{share/man,bin,lib/node,include/node}
sudo chown -R $USER /usr/local/{share/man,bin,lib/node,include/node}
mkdir node-install
curl http://nodejs.org/dist/node-v0.4.7.tar.gz | tar -xzf - -C node-install
cd node-install/*
./configure
make install
curl http://npmjs.org/install.sh | sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment