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.
Videos
09:09
How to Install and Use NVM (Node Version Manager) on Windows (NVM ...
12:04
How to Install and Use NVM (Node Version Manager) on Mac & Linux ...
10:29
Using NVM to Leverage Multiple Versions of NodeJS - YouTube
08:02
Easily manage multiple Node.js versions with NVM - YouTube
Install NVM on Windows, Mac and Linux (and how to use it)
#6: Install NVM (Node Version Manager) | Setup Web ...
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.
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.
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.
Davescripts
davescripts.com โบ nvm-command-reference
NVM Command Reference - DaveScripts.com
List of basic NVM commands.
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.
Top answer 1 of 9
56
nvm list
This command worked fine for me. It will list all the installed versions of node under nvm
2 of 9
13
This happens when you have installed node but not installed using nvm, you can install the versions again, by like
nvm install 12.14 where 12.14 is that particular version you wanna use.
and use it by nvm use 12.14.
I read somewhere that you can actually have those versions being managed by nvm itself, but I need to find it again, will update my answer when I find it.
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