Forrest logo
back to the nvm tool

node:install:version

Install a given node js version.
$ nvm install ${version}
try on your machine

This command is making use of the Node Version Manager (nvm) to install a specific version of Node.js.

Here, ${version} is a placeholder for a specific version number of Node.js that you want to install. You would replace ${version} with the desired version number when executing the command.

For example, to install Node.js version 12, you would run:

nvm install 12

This command will download and install the specified version of Node.js on your system, making it available for use.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the nvm tool