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

Untitled

By: a guest on May 16th, 2012  |  syntax: None  |  size: 0.35 KB  |  hits: 14  |  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. echo 'export npm_config_userconfig=$HOME/.config/npmrc' >> ~/.bashrc
  3. . ~/.bashrc
  4. mkdir ~/.local
  5. mkdir ~/node-latest-install
  6. cd ~/node-latest-install
  7. curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1
  8. ./configure --prefix=~/.local
  9. make install
  10. curl http://npmjs.org/install.sh | sh