On this page you find all important commands for the CLI tool nvm. If the
command you are looking for is missing please ask our AI.
nvm
nvm is a version manager for node.js, designed to be installed per-user, and invoked per-shell. nvm works on any POSIX-compliant shell (sh, dash, ksh, zsh, bash), in particular on these platforms: unix, macOS, and windows WSL.
List of commands for nvm:
-
node:install:version Install a given node js version.$ nvm install ${version}try on your machineexplain this command
-
nvm.fish:tldr:2bb86 nvm.fish: Use a specific version of Node.js in the current shell.$ nvm use ${node_version}try on your machineexplain this command
-
nvm.fish:tldr:5e797 nvm.fish: Uninstall a given Node.js version.$ nvm uninstall ${node_version}try on your machineexplain this command
-
nvm.fish:tldr:b0ae1 nvm.fish: List all available Node.js versions and highlight the default one.$ nvm listtry on your machineexplain this command
-
nvm:tldr:3f58e nvm: Launch the REPL of a specific version of Node.js.$ nvm run ${node_version} --versiontry on your machineexplain this command
-
nvm:tldr:d01e1 nvm: Execute a script in a specific version of Node.js.$ nvm exec ${node_version} node ${app-js}try on your machineexplain this command
-
nvm:tldr:d503c nvm: Set the default Node.js version.$ nvm alias default ${node_version}try on your machineexplain this command
-
nvm:tldr:fc9e8 nvm: List all remote Node.js versions.$ nvm ls-remotetry on your machineexplain this command