Skip to content

Commit

Permalink
Merge remote-tracking branch 'creationix/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
walkah committed Apr 2, 2012
2 parents 33bfe96 + 6d58fcb commit 4760765
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.markdown
Expand Up @@ -8,29 +8,29 @@ To install create a folder somewhere in your filesystem with the "`nvm.sh`" file

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

git clone git://github.com/creationix/nvm.git ~/.nvm
git clone git://github.com/creationix/nvm.git ~/nvm

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

. ~/.nvm/nvm.sh
. ~/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.4.1 release of node, do this:
To download, compile, and install the v0.6.14 release of node, do this:

nvm install v0.4.1
nvm install v0.6.14


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

nvm use v0.4.1
nvm use v0.6.14

Or you can just run it:

nvm run v0.4.1
nvm run v0.6.14

If you want to see what versions are available:

Expand All @@ -42,7 +42,7 @@ To restore your PATH, you can deactivate it.

To set a default Node version to be used in any new shell, use the alias 'default':

nvm alias default v0.4.1
nvm alias default 0.6

## Problems

Expand Down

0 comments on commit 4760765

Please sign in to comment.