Skip to content

Instantly share code, notes, and snippets.

@yomike05
Forked from johnmdonahue/gist:1842561
Created November 20, 2012 18:54
Show Gist options
  • Save yomike05/4120132 to your computer and use it in GitHub Desktop.
Save yomike05/4120132 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.8.14
$ ./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