Skip to content

Instantly share code, notes, and snippets.

@saqibsarwar
Last active May 8, 2022 17:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save saqibsarwar/144a5a6a43a04b2f547b51d0e2883d22 to your computer and use it in GitHub Desktop.
Save saqibsarwar/144a5a6a43a04b2f547b51d0e2883d22 to your computer and use it in GitHub Desktop.
Frequently used NVM commands
// check version
node -v || node --version
// list installed versions of node (via nvm)
nvm ls
// install specific version of node
nvm install 16
// set default version of node
nvm alias default 16
// switch version of node
nvm use 16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment