Skip to content

Instantly share code, notes, and snippets.

@kuzzmi
Last active November 15, 2015 15:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kuzzmi/a68c7cac9d501bb37264 to your computer and use it in GitHub Desktop.
Save kuzzmi/a68c7cac9d501bb37264 to your computer and use it in GitHub Desktop.
# this way is best if you want to stay up to date
# or submit patches to node or npm
mkdir ~/local
echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc
. ~/.bashrc
# could also fork, and then clone your own fork instead of the official one
git clone git://github.com/nodejs/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