Skip to content

Instantly share code, notes, and snippets.

@tvinhkhoa
Forked from chranderson/nvmCommands.js
Created March 9, 2024 03:10
Show Gist options
  • Save tvinhkhoa/6e40fd9f9661f8619ab995bc75dcbc3a to your computer and use it in GitHub Desktop.
Save tvinhkhoa/6e40fd9f9661f8619ab995bc75dcbc3a to your computer and use it in GitHub Desktop.
Useful NVM commands
// 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
@tvinhkhoa
Copy link
Author

In window
// list locally installed versions of node
nvm list

// list remote available versions of mode
nvm list available

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment