As a developer, you'll likely encounter the need to juggle multiple Node.js projects in your local development environment, each requiring different versions of Node.js. To manage these requirements efficiently, we strongly recommend installing Node Version Manager (NVM) instead of directly installing Node.js. NVM allows you to switch between Node versions seamlessly, ensuring that each project has the right environment to run effectively. For those interested in optimizing their development setup further, we have an article detailing the best local development practices to help you avoid common issues in the future.
📝 This guide is for Windows users only, follow these links if you want to install NVM on MacOS or install NVM on linux.
1) Download NVM for Windows.
In order to install Node Version Manager tool in Windows environment can download the latest nvm-setup.zip file from their github page.
🔥 Make sure to download the latest
nvm-setup.zipfile because it contains a very simple installation wizard.
2) Install NVM on your Windows Computer
Go to your Downloads folder on Windows, and unzip nvm-setup.zip file and double click on nvm-setup.
3) Follow the installation wizard
When the installation wizard opens, hit the next button a bunch of times, and at the end you will see an install button that you will hit too. After that, just wait for the progress bar to finish.
:point_up: ?? Remember not to touch any default configuration. Always keep hitting next!!!
4) Find it on your command Prompt
Once it is installed, open Windows Command Prompt. If you have any issues finding the command line, just type CMD in Windows search bar at the bottom-left corner of your desktop.
Type nvm and hit enter on your command prompt and you should see a message similar to this one:

5) Install Node version 22 or whatever version you want
If you want to check what are the current node versions available you can type: nvm list available or you can go to nodejs.org and check all of them.
We would recommend using the latest stable version, for example Node v22 when writing this article. In the command prompt type the command below:
nvm install 226) Checking installed node versions
Always check your installed node versions. Sometimes our applications do not run because we are using outdated versions. This command will show all the installed node versions you have in Windows.
$ nvm list7) Changing between different node versions:
You can always use different node versions and this command line let us jump between all our installed versions.
# for node 8
nvm use 8.15.0
# for node 10
nvm use 10.15.1