Node Version Manager nvm

Updated: 30 October 2023

List installed versions

nvm ls

List remote versions available for install

nvm ls-remote

Install a specific version number

nvm install 8.0.0

Use the latest available 8.0.x release

nvm use 8.0

Attempt to upgrade to the latest working `npm` on the current node version

nvm install-latest-npm

Uninstall a version of node

nvm deactivate
nvm uninstall 8.8.1

Leave a comment