You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.2 KiB

15 years ago
# Node Version Manager
## Installation
15 years ago
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.
15 years ago
To install create a folder somewhere in your filesystem with the nvm.sh file inside it. I put mine in a folder called `.nvm`.
15 years ago
15 years ago
Then add three lines to your bash profile:
15 years ago
NVM_DIR=$HOME/.nvm
. $NVM_DIR/nvm.sh
15 years ago
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.
15 years ago
## 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:
15 years ago
nvm update
If you want to see what versions you have installed issue:
nvm list