Skip to content

Instantly share code, notes, and snippets.

@johnmdonahue
Created February 16, 2012 06:08
Show Gist options
  • Save johnmdonahue/1842561 to your computer and use it in GitHub Desktop.
Save johnmdonahue/1842561 to your computer and use it in GitHub Desktop.
Quick Node Install from GitHub
$ sudo apt-get update
$ sudo apt-get install git-core curl build-essential openssl libssl-dev
# node
$ git clone git://github.com/joyent/node.git && cd node
$ git checkout v0.6.17
$ ./configure
$ make
$ sudo make install
# npm
$ curl http://npmjs.org/install.sh | sudo sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment