An alternative to installing Node.js through apt is to use a specially designed tool called nvm, which stands for “Node.js version manager”.
Using nvm, you can install multiple, self-contained versions of Node.js which will allow you to control your environment easier. It will give you on-demand access to the newest versions of Node.js, but will also allow you to target previous releases that your app may depend on.
Install prerequisite package
To start off, we’ll need to get the software packages from our Ubuntu repositories that will allow us to build source packages. The nvm script will leverage these tools to build the necessary components:
1 2 |
|
Install nvm
Once the prerequisite packages are installed, you can pull down the nvm installation script from the project’s GitHub page. The version number may be different, but in general, you can download and install it with the following syntax:
1
|
|
This will download the script and run it. It will install the software into a subdirectory of your home directory at ~/.nvm. It will also add the necessary lines to your ~/.profile file to use the file.
To gain access to the nvm functionality, you’ll need to log out and log back in again, or you can source the ~/.profile file so that your current session knows about the changes:
1
|
|
Now that you have nvm installed, you can install isolated Node.js versions.
Install nodejs
To find out the versions of Node.js that are available for installation, you can type:
1 2 3 4 5 6 7 8 9 10 |
|
As you can see, the newest version at the time of this writing is v0.11.13. You can install that by typing:
1
|
|
Usually, nvm will switch to use the most recently installed version. You can explicitly tell nvm to use the version we just downloaded by typing:
1
|
|
When you install Node.js using nvm, the executable is called node. You can see the version currently being used by the shell by typing:
1 2 3 4 |
|
If you have multiple Node.js versions, you can see what is installed by typing:
1 2 3 |
|
If you wish to default one of the versions, you can type:
1
|
|
This version will be automatically selected when a new session spawns. You can also reference it by the alias like this:
1
|
|
Each version of Node.js will keep track of its own packages and has npm available to manage these.
Install nodejs packages with npm
You can have npm install packages to the Node.js project’s ./node_modules directory by using the normal format:
1
|
|
If you’d like to install it globally (available to the other projects using the same Node.js version), you can add the -g flag:
1
|
|
This will install the package in:
1
|
|
Installing globally will let you run the commands from the command line, but you’ll have to use link the package into your local sphere to require it from within a program:
1
|
|
You can learn more about the options available to you with nvm by typing:
1
|
|
Written with StackEdit.