omrajsharma / nvm-commands

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

NVM Commands

Given commands only work after successful installation of nvm in the local machine.

  1. NVM version
nvm --version
  1. Install node
nvm install node
  1. Available node versions
nvm ls-remote
  1. Install node version
nvm install NODE_VERSION
  1. Use node version
nvm use NODE_VERSION
  1. Set default version
nvm alias default NODE_VERSION

About