2010-04-15 10:00:34 -07:00
# Node Version Manager
## Installation
2010-04-15 10:07:09 -07:00
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.
2010-04-15 10:06:53 -07:00
2010-04-15 12:14:52 -05:00
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:
2010-05-06 12:51:43 -05:00
git clone git://github.com/creationix/nvm.git ~/.nvm
2010-04-15 10:00:34 -07:00
2010-05-06 12:51:43 -05:00
Then add two lines to your bash profile:
2010-04-15 10:00:34 -07:00
2010-06-08 07:42:35 -07:00
NVM_DIR=$HOME/.nvm
2010-06-08 07:39:57 -07:00
. $NVM_DIR/nvm.sh
2010-05-06 12:51:43 -05:00
nvm use
2010-04-15 10:03:42 -07:00
2010-05-06 18:33:46 -05:00
The first line loads the `nvm` function into your bash shell so that it's available as a command. The second line sets your default node version to the latest released version.
2010-04-15 10:00:34 -07:00
## Usage
2010-05-06 12:51:43 -05:00
To download, install, and use the v0.1.94 release of node do this:
2010-04-15 10:00:34 -07:00
2010-05-06 12:51:43 -05:00
nvm install v0.1.94
2010-04-15 10:00:34 -07:00
And then in any new shell just use the installed version:
2010-05-06 12:51:43 -05:00
nvm use v0.1.94
2010-04-15 10:00:34 -07:00
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:
2010-04-15 10:03:42 -07:00
nvm update
If you want to see what versions you have installed issue:
2010-05-06 18:35:50 -05:00
nvm list
2010-05-06 18:33:46 -05:00
If you want to install nvm to somewhere other than `$HOME/.nvm` , then set the `$NVM_DIR` environment variable before sourcing the nvm.sh file.