Skip to content

Instantly share code, notes, and snippets.

@braveheart-star
Forked from chranderson/nvmCommands.js
Created June 29, 2021 09:43
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save braveheart-star/363e7c63b68c4198d282e708feaa7f1b to your computer and use it in GitHub Desktop.
Save braveheart-star/363e7c63b68c4198d282e708feaa7f1b to your computer and use it in GitHub Desktop.
Useful NVM commands
// check version
node -v || node --version
// list installed versions of node (via nvm)
nvm ls
// install specific version of node
nvm install 6.9.2
// set default version of node
nvm alias default 6.9.2
// switch version of node
nvm use 6.9.1
@braveheart-star
Copy link
Author

useful

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