Node Version Manager nvm

Updated: 18 February 2026

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

Set v24.13.1 as the default version, to persist after system restart

nvm alias default v24.13.1

Leave a comment