sketchpad

A collection of personal and technical notes.

View the Project on GitHub arantebw/sketchpad

nvm

alias

Set the default version.

nvm alias default <version>
# e.g.
nvm alias default 18

current

Check the current version of Node/NPM being used.

nvm current

install

Downloads and installs a specific Node/NPM <version>.

nvm install <version>

ls

List all of the available local versions of Node/NPM.

nvm ls

ls-remote

List all of the available remote versions of Node/NPM.

nvm ls-remote

use

Activate a specific version of Node/NPM using an <alias> in the current shell.

nvm use <alias>