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.

61 lines
1.7 KiB

15 years ago
# 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.
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`".
Or if you have `git` installed, then just clone it:
git clone git://github.com/creationix/nvm.git ~/nvm
15 years ago
To activate nvm, you need to source it from your bash shell
15 years ago
. ~/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.
15 years ago
## Usage
To download, compile, and install the v0.4.1 release of node, do this:
15 years ago
nvm install v0.4.1
15 years ago
15 years ago
And then in any new shell just use the installed version:
nvm use v0.4.1
15 years ago
Or you can just run it:
nvm run v0.4.1
If you want to see what versions are available:
15 years ago
nvm ls
15 years ago
To restore your PATH, you can deactivate it.
15 years ago
nvm deactivate
To set a default Node version to be used in any new shell, use the alias 'default':
nvm alias default v0.4.1
## Problems
If you try to install a node version and the installation fails, be sure to delete the node downloads from src (~/.nvm/src/) or you might get an error when trying to reinstall them again or you might get an error like the following:
curl: (33) HTTP server doesn't seem to support byte ranges. Cannot resume.
Where's my 'sudo node'? Checkout this link:
https://github.com/creationix/nvm/issues/43
on Arch Linux and other systems using python3 by default, before running *install* you need to
export PYTHON=python2