Node Version Manager - POSIX-compliant bash script to manage multiple active node.js versions
Go to file
Tim Caswell 077a661696 zsh prompts get interfered with environment variables that are named the
directory you are in. Don't define START unless we need to.

(Thanks cgcardona)

Change-Id: I256a4db0af9b40b64bc0fe8d6e393f614132db68
2010-12-10 12:52:58 -08:00
.gitignore Make the gist work as it's own repo. 2010-04-15 12:16:23 -05:00
install.sh Clean up npm integration a little bit 2010-12-10 12:43:27 -08:00
nvm.sh zsh prompts get interfered with environment variables that are named the 2010-12-10 12:52:58 -08:00
package.json Bump version 2010-12-10 12:43:42 -08:00
README.markdown Clean up npm integration a little bit 2010-12-10 12:43:27 -08:00
uninstall.sh A package.json install that works. 2010-12-10 11:44:58 -08:00

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 and libssl-dev packages work.

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://github.com/creationix/nvm.git ~/.nvm

To activate nvm, you need to source it from your bash shell

. ~/.nvm/nvm.sh

I always add this line to my ~/.bashrc or ~/.profile file to have it automatically sources upon login.
Often I also put in a line to use a specific version of node.

Usage

To download, compile, and install the v0.2.5 release of node, do this:

nvm install v0.2.5

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

nvm use v0.2.5

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

nvm ls

To restore your PATH, you can deactivate it.

nvm deactivate