Skip to content

Instantly share code, notes, and snippets.

@rijdz
Created March 5, 2019 09:13
Show Gist options
  • Save rijdz/48605ff9f78f014452d74414f43e5543 to your computer and use it in GitHub Desktop.
Save rijdz/48605ff9f78f014452d74414f43e5543 to your computer and use it in GitHub Desktop.
// 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment