๐ŸŒ
GitHub
gist.github.com โ€บ chranderson โ€บ b0a02781c232f170db634b40c97ff455
Useful NVM commands ยท GitHub
What about nvm uninstall <version> or to remove, delete, or uninstall nvm - just remove the $NVM_DIR folder (usually ~/.nvm) ... Compiled all the commands in one place.
๐ŸŒ
Duncanleung
duncanleung.com โ€บ nvm commands cheatsheet
NVM Commands Cheatsheet โ€“ Duncan Leung
$ nvm install <node_version> // Install a specific version $ nvm install --lts // Install the latest LTS release $ nvm install-latest-npm // Install latest NPM release only
๐ŸŒ
Nvmnode
nvmnode.com โ€บ cli
NVM Commands - NVM Documentation
Complete NVM commands, including nvm install, nvm use, nvm list, nvm remove, and other commands for installing, uninstalling, switching Node versions, and viewing installed Node versions.
๐ŸŒ
GitHub
github.com โ€บ nvm-sh โ€บ nvm
GitHub - nvm-sh/nvm: Node Version Manager - POSIX-compliant bash script to manage multiple active node.js versions
You can instruct the installer to not edit your shell config (for example if you already get completions via a zsh nvm plugin) by setting PROFILE=/dev/null before running the install.sh script. Here's an example one-line command to do that: PROFILE=/dev/null bash -c 'curl -o- https://raw.g...
Starred by 90.4K users
Forked by 9.7K users
Languages ย  Shell 98.0% | Makefile 1.2%
๐ŸŒ
Squash
squash.io โ€บ nvm-node-version-manager-guide-cheat-sheet
nvm (Node Version Manager): Install Guide & Cheat Sheet
Always refer to the official nvm documentation for the most up-to-date and accurate installation instructions. Along with basic commands like installing, listing, and switching Node.js versions, nvm also provides several advanced commands that offer additional functionality.
๐ŸŒ
DEV Community
dev.to โ€บ rigalpatel001 โ€บ advanced-nvm-commands-for-efficient-nodejs-version-management-4h5l
Advanced NVM Commands for Efficient Node.js Version Management - DEV Community
July 25, 2024 - nvm list global # Lists globally installed packages for the current version nvm reinstall-packages <node_version> # Reinstall global packages from a specific version
๐ŸŒ
freeCodeCamp
freecodecamp.org โ€บ news โ€บ node-version-manager-nvm-install-guide
Node Version Manager โ€“ NVM Install Guide
September 9, 2022 - These commands will clone the nvm repository to a ~/.nvm directory on your device.
๐ŸŒ
Medium
medium.com โ€บ @arunangshudas โ€บ managing-node-js-versions-with-nvm-node-version-manager-054a4588e303
Managing Node.js Versions with nvm (Node Version Manager) | by ...
June 30, 2024 - This command displays a long list of available versions. You can also filter the list to LTS (Long-Term Support) versions with: ... To ensure that each of your projects uses the correct Node.js version, you can use a .nvmrc file. This file should contain the version number that the project requires.
Find elsewhere
๐ŸŒ
Linode
linode.com โ€บ docs โ€บ guides โ€บ how-to-install-use-node-version-manager-nvm
How to Install and Use NVM (Node Version Manager) | Linode Docs
November 29, 2023 - You can preview a list of all available Node versions with the ls-remote command: ... Install any additional versions of Node you want to use. You can specify either a major or minor release of Node to install. nvm install 17.0.1 # Specific ...
๐ŸŒ
NVM Express
nvmexpress.org โ€บ home โ€บ command set โ€บ nvm command set specification
NVM Command Set Specification - NVM Express
August 5, 2025 - The NVM Command Set specification defines the NVM Command Set, which includes the most essential I/O commands: read and write.
๐ŸŒ
HeyNode
heynode.com โ€บ tutorial โ€บ install-nodejs-locally-nvm
Install Node.js Locally with Node Version Manager (nvm) | HeyNode
NVM stands for Node.js Version Manager. The nvm command is a POSIX-compliant bash script that makes it easier to manage multiple Node.js versions on a single environment.
๐ŸŒ
Novacare Blog
blog.novacare.no โ€บ use-nvm-to-handle-different-node-versions
Use NVM to handle different Node versions
July 4, 2024 - nvm use <version> Specify what version of Node to use. And if you want to see a list of all the commands available just enter NVM in cmd to list them all:
๐ŸŒ
DEV Community
dev.to โ€บ sanzhanov โ€บ node-version-manager-nvm-how-to-install-and-use-step-by-step-guide-k4a
Node Version Manager (NVM): how to install and use (step-by-step guide) - DEV Community
November 17, 2022 - Node Version Manager (NVM) is a tool that allows you to have multiple versions of Node.js on your device, switch them quickly, and it is managed from the command line interface (CLI).
๐ŸŒ
TechDocs
techdocs.broadcom.com โ€บ us โ€บ en โ€บ storage-and-ethernet-connectivity โ€บ ethernet-nic-controllers โ€บ bcm957xxx โ€บ adapters โ€บ ethernet-network-adapter-utilities โ€บ nic-cli-configuration-utility โ€บ nic-configuration-utility โ€บ config-commands.html
nvm Command
September 30, 2025 - nvm --view [-V] [-f <firmware package file name>] [-t|--type <nvm directory name>] nvm -l|--list [-V] [-f <firmware package file name>] nvm --verify [-V] [-f <firmware package file name>] nvm -n|--sync nvm -F|--restore_factory_defaults [--silent] nvm -r|--dir_read -f <file name> -t|--type <nvm ...
๐ŸŒ
KeyCDN
keycdn.com โ€บ blog โ€บ node-version-manager
Comprehensive Node Version Manager (NVM) Tutorial - KeyCDN
If you're using Linux, run the following commands to install the build-essential package with the Advanced Package Tool: sudo apt-get update sudo apt-get install build-essential ยท Finally, you can install Node Version Manager using either curl or Wget. For curl, run the following from your terminal: curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.5/install.sh | bash
๐ŸŒ
D2i Technology
d2itechnology.com โ€บ blogs โ€บ how-to-use-nvm-node-version-manager
How to Use NVM (Node Version Manager): A Complete Guide for JavaScript Developers - D2i Technology
June 12, 2025 - # List available Node.js versions nvm ls-remote # Install a specific version nvm install 16.14.0 # Use a specific version nvm use 16.14.0 # Set default Node version nvm alias default 16.14.0 # Display currently active version nvm current
๐ŸŒ
Refine
refine.dev โ€บ blog โ€บ install-nvm-mac-and-windows
How to Install and Use NVM? | Refine
July 5, 2024 - It wasn't until after a long time ... and all the tests passed. One of the quick and most powerful commands of the nvm is the use command....