nvm install 8.10.0 is for installing proposed node version locally.

In order to use it:

nvm use 8.10.0

Note that you need to run this command as administrator.

You can always set default Node.js version:

nvm alias default 8.10.0
Answer from Derviş Kayımbaşıoğlu on Stack Overflow
🌐
GitHub
github.com › nvm-sh › nvm
GitHub - nvm-sh/nvm: Node Version Manager - POSIX-compliant bash script to manage multiple active node.js versions · GitHub
This example defaults to installation of nodejs version 20.x.y. Optionally you can easily override the version with docker build args like: docker build -t nvmimage --build-arg NODE_VERSION=19 .
Starred by 93K users
Forked by 10.1K users
Languages   Shell 98.2% | Makefile 1.1%
Discussions

Managing npm versions with nvm - how to switch between different npm releases?
Each time I install a new Node version through nvm, it comes bundled with its own npm version in the respective bin directory. The problem I’m facing is that I can’t figure out how to change which npm version gets used. It seems like nvm handles Node switching perfectly but doesn’t provide ... More on community.latenode.com
🌐 community.latenode.com
0
0
June 18, 2025
How can I specify which Node version to use when Node was installed with Homebrew?
You should use homebrew to install nvm (which looks like you have already) and nvm to install node. Don't use homebrew to install node. Just brew uninstall node. More on reddit.com
🌐 r/node
11
1
February 21, 2025
Node Version Manager
To resolve your NVM issues on Windows, try reinstalling NVM and Node by uninstalling both, then reinstalling NVM for Windows and using it to install the desired Node.js versions. Ensure your environmental variables are correctly set, with paths pointing to the installed Node.js versions managed by NVM, and verify that NVM_HOME and NVM_SYMLINK are correctly configured. Open a new Command Prompt or PowerShell window, run nvm use [desired version], and check the Node.js version to confirm the correct version is active. Use sudo to avoid permission issues, and make sure you're using the latest version of NVM for Windows. More on reddit.com
🌐 r/learnprogramming
11
1
July 16, 2024
Set node version used by neovim dynamically
https://stackoverflow.com/questions/23556330/run-nvm-use-automatically-every-time-theres-a-nvmrc-file-on-the-directory More on reddit.com
🌐 r/neovim
8
2
July 3, 2024
🌐
Swovo
swovo.com › blog › how-to-set-a-default-node-version-with-nvm
How to Change Node Version with NVM (and Set Default) | Swovo
January 25, 2024 - ... Use nvm alias default <version_number> to set your preferred version as the default. For example, nvm alias default 14.17.0. Changing Node versions is a frequent task, especially when working on multiple projects.
🌐
Medium
medium.com › the-tech-collective › taming-node-part-1-managing-node-js-versions-effectively-with-nvm-0c9edc1b48bf
Taming Node — Part 1: Managing node.js versions effectively with NVM | by Andrew Allison | The Tech Collective | Medium
August 8, 2024 - On Windows: Open System Properties > Environment Variables, locate Path, and remove any entries related to Node.js (e.g., C:\Program Files\nodejs\). ... Ok, so we should be all clean and in a good place to start.
🌐
LogRocket
blog.logrocket.com › home › how to switch node.js versions: a cross-platform guide for nvm and alternatives
How to switch Node.js versions: A cross-platform guide for NVM and alternatives - LogRocket Blog
March 24, 2025 - NVM eliminates these headaches by enabling seamless switching between versions. For example, you can maintain legacy projects (Node10.16 to 12) while using modern tools with Node 20 LTS, and test compatibility across versions without system-wide changes.
🌐
NVM Documentation
nvmnode.com › cli › nvm-use-node.html
Switching Node Versions with NVM - NVM Documentation
When switching Node.js versions, globally installed packages don't automatically migrate. Each Node.js version has its own separate set of global packages. If you want to copy all global packages from one version to another, you can use: ... # Copy global packages from v14.17.0 to v16.14.0 $ nvm install 16.14.0 --reinstall-packages-from=14.17.0
🌐
Medium
medium.com › @madhawaawishka › switching-node-js-versions-with-nvm-53aff64ac4f2
Switching Node.js Versions with nvm | by Madhawa Awishka | Medium
July 17, 2024 - For example, if you use node.js version 20 for a project that requires version 16, you may get some different outputs or you will end up with some errors. In fact, you will most likely get a warning that says ... Instead of uninstalling the currently installed version and again installing the required version you can use nvm to simply change between node versions.
Find elsewhere
🌐
Refine
refine.dev › home › blog › engineering › how to change node version
How to Change Node Version | Refine
March 27, 2024 - For example: nvm use 14 will work ... a terminal, you can change your default version by using the below command nvm alias default 14.5.1 where you can replace 14.5.1 with any Node.js version you want to be defau...
🌐
OpenReplay
blog.openreplay.com › switch-nodejs-versions-linux-nvm
How to Switch Node.js Versions on Linux using NVM (Step-by-Step Guide)
Replace ""18"" with the Node version you want to migrate from. Run the install script again to update NVM seamlessly:
🌐
SitePoint
sitepoint.com › blog › javascript › installing multiple versions of node.js using nvm
Installing Multiple Versions of Node.js Using nvm — SitePoint
March 3, 2025 - This will clone the nvm repository to ~/.nvm and will make the required changes to your bash profile, so that nvm is available from anywhere in your terminal. And that’s it! Reload (or restart) your terminal and nvm is ready to be used. If installed correctly, the nvm command is available anywhere in you terminal. Let’s see how to use it to manage Node.js versions.
🌐
NVM
nvmnode.com
NVM - Node.js Version Manager Tool - NVM Documentation
Use .nvmrc files to automatically switch to the correct Node.js version for each project.
🌐
DEV Community
dev.to › shaundai › how-to-switch-to-using-new-version-of-node-using-nvm-2pfi
How to switch to using new version of node using nvm - DEV Community
July 21, 2025 - SWITCH TO A NEW VERSION (CHANGE ... time you re-open your IDE, use the keywords alias default with nvm like this: nvm alias default [version]...
🌐
BairesDev
bairesdev.com › home › blog › software development
Change Node Version: A Step-by-Step Guide | All Environments
The above command will download and run the NVM installation script installing the latest version of Node Version Manager (NVM) on your system to help you with changing of NodeJS versions in your workflow during NodeJS development.
🌐
Better Programming
betterprogramming.pub › how-to-change-node-js-version-between-projects-using-nvm-3ad2416bda7e
How to Change Node.js Version Between Projects Using NVM | by Code Road | Better Programming
October 22, 2023 - For quite some time they updated and released new versions and several of them required upgrading the Node.js version. So, this article is about how to update the Node versions between projects. NVM usage is available for both Long-term support (LTS) versions of Node.js and the latest version.
🌐
Latenode
community.latenode.com › other questions › npm
Managing npm versions with nvm - how to switch between different npm releases? - NPM - Latenode Official Community
June 18, 2025 - I’m working with nvm to manage multiple Node.js versions on my system and it’s been great for switching between different Node releases. Each time I install a new Node version through nvm, it comes bundled with its own n…
🌐
DreamHost
help.dreamhost.com › hc › en-us › articles › 360029083351-Installing-a-custom-version-of-NVM-and-Node-js
Installing a custom version of NVM and Node.js – DreamHost Knowledge Base
[server]$ nvm use v20.18.0 Now using node v20.18.0 (npm v) Confirm which version of Node.js is running. ... After installing a new version of Node.js, your current Shell session should use it automatically when you log back in. If you notice that the version is not correct, you may need to review the .bash_profile instructions above. You could also set the new version as your default version by running the following command. Make sure to change the version number to the version you've installed.
🌐
Dead Simple Chat
deadsimplechat.com › blog › how-to-switch-node-js-versions-with-nvm
How to switch Node.js versions with NVM
September 18, 2024 - elif [ "$node_version" != "$(nvm version default)" ]; then nvm use default If the ./nvmrc file is not found and the current version is not default this code switches to the default version ... add-zsh-hook chpwd load-nvmrc This adds a hook so that load-nvmrc is called everytime you change a directory
🌐
ReplayBird Blog
blog.replaybird.com › change-nodejs-version-with-nvm
How to Change and Switch between Node.js Version with NVM?
January 30, 2024 - After running App1, the focus shifts to App2, and the node version is switched to v12 by executing nvm use v12 in its directory. With the NVM command nvm use <version>, you can change your Node.js version for any application anytime you want, ...