Home  >  Article  >  Web Front-end  >  How to delete node in nvm

How to delete node in nvm

藏色散人
藏色散人Original
2022-12-29 10:07:419693browse

Nvm method to delete node: 1. Download "nvm-setup.zip" and install it on the C drive; 2. Configure environment variables and check the version number through the "nvm -v" command; 3. Use the "nvm install" command to install the node; 4. Use the "nvm uninstall" command to delete the installed node.

How to delete node in nvm

The operating environment of this tutorial: Windows 10 system, node v7.6.0 version, Dell G3 computer.

nvm How to delete node?

nvm introduction and use, delete node

1. Introduction

nvm is a node version management tool

2. Download

Download nvm address
How to delete node in nvm

Download nvm-setup. zip => Install on C drive

3. Configure environment variables

In this step, the latest version will be automatically configured. You only need the 360 ​​of your computer. Just don’t block such devices
How to delete node in nvm

##4. Use

to check the version. This proves that the installation is successful

nvm -v

How to delete node in nvm

5. Install nodeJS

Just specify the version number you need (PS: This download may be a bit slow, hang up/wait patiently)

nvm install 版本

How to delete node in nvm

6. Use the newly installed node
nvm use 版本

How to delete node in nvm

7. Commonly used commands
nvm install stable   //安装最新版 node

nvm install [node版本号]   //安装指定版本的node

nvm ls // 查看已安装版本方便切换

nvm use [node版本号]   //切换到指定版本的node

nvm alias default [node版本号] //设置默认版本

8. Delete the installed node
nvm uninstall 版本

How to delete node in nvm

Prompts you to manually go to the nvm installation directory to delete
How to delete node in nvm

Recommended study: "

node.js video tutorial"

The above is the detailed content of How to delete node in nvm. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn