Managing Node.js Versions with nvm

By  on  

A while back I wrote a blog post called Upgrade Node.js with NPM.  The shell commands within that post work great but there were reports in the comments that it could mess with node module paths and such -- a far from ideal situation.  Little did I know that I was only off by one letter:  nvm is the ideal solution.

Installation

You can read the installation steps on the nvm GitHub page.  There are only two easy steps for installation and configuration.

Using nvm

If you work with a lot of different Node.js utilities, you know that sometimes you need to quickly switch to other versions of Node.js without hosing your entire machine.  That's where you can use nvm to download, install, and use different versions of Node.js:

nvm install 4.0

At any given time you can switch to another with use:

nvm use 0.12

If you want to check out what versions of Node.js are installed on your machine, you can use the ls option:

nvm ls

/*
		v0.10.26
		v0.10.36
->      v0.12.7
		v4.2.1
		system
*/

If you're done with a version and want it gone, you can do that too:

nvm uninstall 0.10

Set the Default Node Version

You can set the default Node.js version by using alias:

nvm alias default system

# or...
nvm alias default v9.3.0

nvm has been a lifesaver for me, especially when troubleshooting issues in projects where the user may have more than one Node.js version.  If you're looking to get into Node.js development, one of the first tools you get should be nvm!

Recent Features

  • By
    Facebook Open Graph META Tags

    It's no secret that Facebook has become a major traffic driver for all types of websites.  Nowadays even large corporations steer consumers toward their Facebook pages instead of the corporate websites directly.  And of course there are Facebook "Like" and "Recommend" widgets on every website.  One...

  • By
    Introducing MooTools Templated

    One major problem with creating UI components with the MooTools JavaScript framework is that there isn't a great way of allowing customization of template and ease of node creation. As of today, there are two ways of creating: new Element Madness The first way to create UI-driven...

Incredible Demos

  • By
    Simple Image Lazy Load and Fade

    One of the quickest and easiest website performance optimizations is decreasing image loading.  That means a variety of things, including minifying images with tools like ImageOptim and TinyPNG, using data URIs and sprites, and lazy loading images.  It's a bit jarring when you're lazy loading images and they just...

  • By
    How to Create a Twitter Card

    One of my favorite social APIs was the Open Graph API adopted by Facebook.  Adding just a few META tags to each page allowed links to my article to be styled and presented the way I wanted them to, giving me a bit of control...

Discussion

  1. Aliasing is quick important especially when it comes to default:

    nvm alias default 4.2.1
    
  2. Also not that there is a similar tool for windows users.
    [NVMW](https://github.com/hakobera/nvmw).

    You can also check [my fork](https://github.com/yoannmoinet/nvmw) which will persist your choice across session and reboots.

  3. nvm install node --reinstall-packages-from=node

    is useful for moving your tools to the new Node.js version.

    See usage: https://github.com/creationix/nvm#usage

  4. I’ve been using nvm for almost two years now and really really like it. Very easy to use and very compatible across Mac and RedHat.

  5. Is this a replacement for nodenv which I never really got the hang of?

  6. I agree with Kyle. Been using it for a couple years as well and I like it a lot too!

  7. I always had problem with nvm. I’d suggest n https://github.com/tj/n instead :)

  8. Thanks for the nvm primer; it’s been a while and I done fergot. BTW, for installs, updates and dependencies, I do things concentrically:

    Self > OS X
    OS X > Homebrew
    Homebrew > node
    Homebrew > nvm

    Since nvm manages node I don’t use npm to administer with it.

  9. Hello David,

    I am trying to install it. But getting err in my Windows OS

    $ nvm install v6.6
    ######################################################################## 100.0%
    Computing checksum with sha256sum
    Checksums matched!
      File "./configure", line 486
        except OSError, e:
                      ^
    SyntaxError: invalid syntax
    nvm: install v6.6.0 failed!
    
  10. Christopher Wansing

    I am using Node-Red with Node.js version 4.8.2. Now I need v.6.0+ for a sideproject. However I installed NVM and the latest nodejs version and tried to install the package via NPM.
    I got one error during the installation, but after that it finished fine:
    ” Pre-built binaries not found for usb@1.2.0 and node@7.9.0 (node-v51 ABI) (falling back to source compile with node-gyp)”

    When starting a script within the new library I get the error message saying: “Error: Module version mismatch. Expected 46, got 51” Es scheint also daran zu liegen, dass die “alte” Version noch installiert war und ich dann NVM und die neue nachinstalliert habe.

    Wie kann ich den Fehler wegbekommen, ohne komplett meine Node Red Daten zu verlieren?

  11. You can also update it to the latest LTS or the latest (bleeding edge) releases by doing the following:

    Latest LTS:

    nvm install --lts

    Latest:

    nvm install --latest-npm
  12. babu

    when i tried to install node 14.16.0 or 14.16.1, i am getting this error. pls help me fix this issue.

    $ nvm install 14.16.0
    Downloading https://nodejs.org/dist/v14.16.0/node-v14.16.0.tar.xz…
    ######################################################################################## 100.0%
    Computing checksum with sha256sum
    Checksums matched!
    $>./configure –prefix=/c/Users/HP/.nvm/versions/node/v14.16.0 <
    Node.js configure: Found Python 3.9.4…
    ?[1m?[31mERROR?[0m: Did not find a new enough assembler, install one or build with
    –openssl-no-asm.
    Please refer to BUILDING.md
    nvm: install v14.16.0 failed!
    • Rohit

      I have also got the same error

Wrap your code in <pre class="{language}"></pre> tags, link to a GitHub gist, JSFiddle fiddle, or CodePen pen to embed!