-
-
Save ArslanKathia/ab9dc41cd7ca0f2f563e9af23181a402 to your computer and use it in GitHub Desktop.
Useful NVM commands
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// check version | |
node -v || node --version | |
// list locally installed versions of node | |
nvm ls | |
// list remove available versions of node | |
nvm ls-remote | |
// install specific version of node | |
nvm install 18.16.1 | |
// set default version of node | |
nvm alias default 18.16.1 | |
// switch version of node | |
nvm use 20.5.1 | |
// install latest LTS version of node (Long Term Support) | |
nvm install --lts | |
// install latest stable version of node | |
nvm install stable |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Compiled all the commands in one place. Hope this helps.
Install Node
List Available Node Releases
List Installed Nodes
Switch To Another Node Version
Verifying Node Version
Set Alias
Path to Node Executable
nvm which <installed_node_version> // path to the executable where a specific Node version is installed
Uninstall Specific Node Version
Uninstall NVM
To remove, delete, or uninstall nvm, just remove the $NVM_DIR folder (usually ~/.nvm)