Go to file
Tim Caswell 4d2e6045eb Add "help" to the help message. 2010-04-15 12:22:16 -05:00
.gitignore Make the gist work as it's own repo. 2010-04-15 12:16:23 -05:00
README.markdown Make the gist work as it's own repo. 2010-04-15 12:16:23 -05:00
nvm.sh Add "help" to the help message. 2010-04-15 12:22:16 -05:00

README.markdown

Node Version Manager

Installation

First you'll need to make sure your system has a c++ compiler. For OSX, XCode will work, for Ubuntu, the build-essential package works. You'll also need git if you want to track HEAD.

To install create a folder somewhere in your filesystem with the "nvm.sh" file inside it. I put mine in a folder called ".nvm".

Or if you have git installed, then just clone it:

git clone git://gist.github.com/367305.git ~/.nvm

Then add three lines to your bash profile:

NVM_DIR=$HOME/.nvm
. $NVM_DIR/nvm.sh
nvm use v0.1.91

The first line tells your system where NVM is installed, you should already have nvm.sh there. The second line loads the nvm function into your bash shell so that it's available as a command. The third line sets your default node version.

Usage

To download, install, and use the v0.1.91 release of node do this:

nvm install v0.1.91

And then in any new shell just use the installed version:

nvm use v0.1.91

If you want to track HEAD then use the clone command:

nvm clone

Then in any new shell you can get this version with:

nvm use HEAD

When you want to grab the latest from the node repo do:

nvm update

If you want to see what versions you have installed issue:

nvm list