Skip to content

Instantly share code, notes, and snippets.

@mannyanebi
Forked from chranderson/nvmCommands.js
Created April 23, 2022 20:18
Show Gist options
  • Save mannyanebi/5377fdff3972abb9c39d56ee416287c5 to your computer and use it in GitHub Desktop.
Save mannyanebi/5377fdff3972abb9c39d56ee416287c5 to your computer and use it in GitHub Desktop.

Revisions

  1. @chranderson chranderson created this gist Dec 7, 2016.
    14 changes: 14 additions & 0 deletions nvmCommands.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,14 @@
    // 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