Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 2nd, 2012  |  syntax: None  |  size: 0.34 KB  |  hits: 15  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc
  2. . ~/.bashrc
  3. mkdir ~/local
  4. mkdir ~/node-latest-install
  5. cd ~/node-latest-install
  6. curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1
  7. ./configure --prefix=~/local
  8. make install # ok, fine, this step probably takes more than 30 seconds...
  9. curl http://npmjs.org/install.sh | sh