// https://github.com/nvm-sh/nvm#installing-and-updating // check local version of node/npm node -v npm -v // list available nvm node versions nvm ls-remote // list installed versions of node nvm ls // install the latest available version of node nvm install node // install specific version of node nvm install <version number> // set default version of node nvm alias default <version number> // switch version of node nvm use <version number>