Different projects use different Node versions. That means you might have to switch your Node versions depending on the project. As you might imagine, installing and uninstalling Node version is time-consuming.
So if we choose the NVM, we can test if our application work well on different version of node. Let’s install NVM! If your device’s OS is window, you can download the latest NVM installer from releases. Install NVM on the window is more easily than on the macOS I think. After installing it, update the Homebrew package list and install NVM. Brew update brew install nvm. Next, create a directory for NVM. Now add these lines to /.bashprofile ( or /.zshrc for macOS Catalina or later) export NVMDIR=/.nvm source $(brew -prefix nvm)/nvm.sh. Now either quit and reopen your Terminal, or run.
Thankfully, we have the Node Version Manager that allows us to switch between different Node versions easily. Thus, in this article, you will learn how to install it and use it on macOS.
The article illustrates two ways of installing the Node Version Manager. With Homebrew and with the cURL command.
One of the simplest ways to install NVM is to run the following cURL command in your terminal:
What does the command actually do?
All you have to do now is restart your terminal, and you can use the Node Version Manager. Alternatively, if you do not want to restart your terminal after running the cURL command, run source ~/.nvm/nvm.sh in your terminal. Afterward, you can run the nvm commands straightaway.
Another method is to install the Node Version Manager with Homebrew. Run the below command in your terminal:
After the installation finishes, open your profile file (~/.bash_profile, or ~/.zshrc, or ~/.profile, or ~/.bashrc), and add the following lines to it at the end:
By adding the above lines to your profile page, you can run the nvm command in your terminal. If you don't add the above lines, you will get an error when you run nvm commands in the terminal. Going further, you need to restart your terminal to use the nvm commands in the terminal.
Now that you have NVM installed, let's see some of the most useful commands.
First of all, we can run nvm ls-remote to find all the Node versions available for download. Caution: by running this command, you'll get a lot of versions.
Thus, it might take a while until it finishes.
After running the command nvm ls-remote, we can install the version we want by running the following command:
For instance, if you want to install Node version 14, you need to run nvm install 14. It installs the latest Node 14 version. However, if you're going to install a particular version, you can specify it as follows - 13.10.1.
Tip: You can install the latest LTS version of Node by running nvm install --lts.
nvm ls lists all the Node versions installed on your machine. Don't confuse nvm ls with nvm ls-remote. The former one lists the ones installed on your machine, whereas the 'ls-remote' lists all the Node versions available for download.
After installing the Node version you want, you can use it by running the following command:
By running this command, nvm switches the Node version to the one you specified.
Tip: To use the latest LTS version of Node by running nvm use --lts.
The Node Version Manager is a handy tool to switch between Node versions. To recap, in this article, you learned how to:
For more commands, information, troubleshooting, and anything else, check the official nvm repository on GitHub.