Installing and switching between multiple versions of Node.js: n vs. nvm

nodejs-light

The need for a Node Version Manager

Sometimes it is necessary to be able to quickly switch between versions of Node.js without having to uninstall and reinstall a new version. Perhaps one project is written for an older version of Node.js and works on that version, but you’d like to easily test it against a newer version of Node, or perhaps other projects you manage require a newer version of node and you need to be able to switch back and forth. There are two very good Node version management tools for this purpose: n and nvm, they work somewhat differently and each tool has its’ own advantages and disadvantages. I’ll be discussing these differences based on my experience using them on the Mac OS X platform, there will be minor differences in the paths on a linux distro like Ubuntu and for the Windows platform you’ll want to use other packages (nvmw or Nodist).

n at a glance

GitHub: Install: Path to Script: Node Versions Path: How n gets a new version: How n switches versions:
[https://github.com/visionmedia/n](https://github.com/visionmedia/n)
$ npm install -g n
/usr/local/bin/n
/usr/local/n/versions
Downloads Binary Node tar.gz file for platform
Copies files from /usr/local/n/versions/ to /usr/local/

nvm at a glance

GitHub: Install: Path to Script: Node Versions Path: How nvm gets a new version: How nvm switches versions:
[https://github.com/creationix/nvm](https://github.com/creationix/nvm)
curl https://raw.github.com/creationix/nvm/master/install.sh | sh
~/.nvm/nvm.sh
~/.nvm/
Downloads and compiles source node distribution (binary option also available)
updates $PATH variables to point to requested version within ~/.nvm/ directory

n vs. nvm

Although both n and nvm achieve the same goal (allows installing and switching between node versions), n will move your node files always to the same path (/usr/local/bin/node), so you’ll always know that your current executable lives there. One of the downsides of n is that is will only download and install binary node distributions, for older releases (pre-v0.8.6) you’ll have to compile and install the version on your own and then manually copy the files into your /usr/local/n/versions/ directory in order to switch to those versions. On the other hand, since nvm downloads, compiles and installs from the source files, it will work for just about any node.js version. One downside is that since nvm simply manipulates the $PATH variable to point to the requested version some programs and IDEs (such as WebStorm) that need to point to a full path will have to use the full ~/.nvm//bin/node path.

Can I use both n and nvm?

Sure, but you might not want to use both at the same time since they will conflict. If you want to disable nvm just comment out the line that sources the script file from your .profile or .bashrc file:

[[ -s ~/.nvm/nvm.sh" ]] && . ~/.nvm/nvm.sh

and then run:

source .profile

to remove the nvm script from your path.

If you need to run node versions older than v0.8.6, I’ve found that it’s convenient to install them using nvm, then after it’s installed simply copy the folder over from the nvm directory to the n path:

nvm install 0.6.21
sudo cp -fr ~/.nvm/v0.6.21 /usr/local/n/versions/0.6.21

This allows you to use these versions going forward in n.

A personal blog by Matt Palmerlee about software development, coding, leadership, and much more. Checkout my resume.)
Feel free to reach out to me using these channels© 2019