Forrest logo
back to the nvm tool

nvm.fish:tldr:5e797

nvm.fish: Uninstall a given Node.js version.
$ nvm uninstall ${node_version}
try on your machine

The command "nvm uninstall ${node_version}" is used to uninstall a specific version of Node.js using the Node Version Manager (NVM) tool.

Here's a breakdown of each component:

  • "nvm": It refers to the Node Version Manager, a tool that allows you to manage multiple versions of Node.js on your system.
  • "uninstall": This is the command to remove an existing version of Node.js.
  • "${node_version}": This is a placeholder for the specific version of Node.js you want to uninstall. You should replace "${node_version}" with the actual version number or alias of the Node.js version you want to remove.

For example, if you want to uninstall Node.js version 14.2.0, you would run the command "nvm uninstall 14.2.0". The specified Node.js version will be removed from your system, and you will no longer be able to use it with the Node Version Manager.

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