Files
nvm/README.markdown

38 lines
1017 B
Markdown
Raw Normal View History

2010-04-15 10:00:34 -07:00
# Node Version Manager
## Installation
2010-12-10 11:32:16 -08:00
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.
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:
git clone git://github.com/creationix/nvm.git ~/.nvm
2010-04-15 10:00:34 -07:00
2010-12-10 11:32:16 -08:00
To activate nvm, you need to source it from your bash shell
2010-04-15 10:00:34 -07:00
2010-12-10 11:32:16 -08:00
. ~/.nvm/nvm.sh
2010-12-10 11:42:19 -08:00
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.
2010-12-10 11:32:16 -08:00
2010-04-15 10:00:34 -07:00
## Usage
To download, compile, and install the v0.2.5 release of node, do this:
2010-04-15 10:00:34 -07:00
2010-12-10 11:32:16 -08:00
nvm install v0.2.5
2010-04-15 10:00:34 -07:00
And then in any new shell just use the installed version:
2010-12-10 11:32:16 -08:00
nvm use v0.2.5
2010-04-15 10:00:34 -07:00
2010-12-10 11:32:16 -08:00
If you want to see what versions you have installed issue:
2010-04-15 10:00:34 -07:00
2010-12-10 11:32:16 -08:00
nvm ls
2010-04-15 10:03:42 -07:00
2010-12-10 11:32:16 -08:00
To restore your PATH, you can deactivate it.
2010-04-15 10:03:42 -07:00
2010-12-10 11:32:16 -08:00
nvm deactivate
2010-05-06 18:33:46 -05:00