Skip to content

Instantly share code, notes, and snippets.

@zimdo
Created January 31, 2011 00:47
Show Gist options
  • Save zimdo/803485 to your computer and use it in GitHub Desktop.
Save zimdo/803485 to your computer and use it in GitHub Desktop.
Install Node.JS
# very easy
echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc
. ~/.bashrc
mkdir ~/local
mkdir ~/node-latest-install
cd ~/node-latest-install
curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1
./configure --prefix=~/local
make install # ok, fine, this step probably takes more than 30 seconds...
curl http://npmjs.org/install.sh | sh
# from source
mkdir ~/local
echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc
# could also fork, and then clone your own fork instead of ry's
git clone git://github.com/ry/node.git
cd node
./configure --prefix=~/local
make install
cd ..
git clone git://github.com/isaacs/npm.git
cd npm
make install # or "make link" for bleeding edge
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment