Node Version Manager
Node Version Manager (nvm) is a tool to manage multiple versions of Node.js on a single machine.
Installation
scoop install nvmUsage & Commands
nvm install
Install a version of Node.js
nvm install 10.15.3NOTE
You can use nvm install lts to install the latest LTS version of Node.js.
nvm use
Use a version of Node.js
nvm use 10.15.3NOTE
You can use nvm use lts to use the latest LTS version of Node.js.
nvm list
List installed versions of Node.js
nvm listnvm uninstall
Uninstall a version of Node.js
nvm uninstall 10.15.3