NVM的使用

1,什么是NVM

nvm全名node.js version management,是nodejs的版本管理工具。通过它可以安装和切换不同版本的nodejs。

2,下载

可在点此在github. 上下载最新版本,本次下载安装的是windows版本。
打开网址我们可以看到有两个版本:

nvm-noinstall.zip:免安装版,但使用时需进行配置。
nvm-setup.zip:安装版,推荐使用

3,安装

1,双击安装文件 nvm-setup.exe

2,选择nvm安装路径

3,选择nodejs路径

4,确认安装即可

5,打开CMD,输入命令 nvm ,安装成功则如下显示。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
PS D:\90_person\blog> nvm

Running version 1.1.7.

Usage:

nvm arch : Show if node is running in 32 or 64 bit mode.
nvm install <version> [arch] : The version can be a node.js version or "latest" for the latest stable version.
Optionally specify whether to install the 32 or 64 bit version (defaults to system arch).
Set [arch] to "all" to install 32 AND 64 bit versions.
Add --insecure to the end of this command to bypass SSL validation of the remote download server.
nvm list [available] : List the node.js installations. Type "available" at the end to see what can be installed. Aliased as ls.
nvm on : Enable node.js version management.
nvm off : Disable node.js version management.
nvm proxy [url] : Set a proxy to use for downloads. Leave [url] blank to see the current proxy.
Set [url] to "none" to remove the proxy.
nvm node_mirror [url] : Set the node mirror. Defaults to https://nodejs.org/dist/. Leave [url] blank to use default url.
nvm npm_mirror [url] : Set the npm mirror. Defaults to https://github.com/npm/cli/archive/. Leave [url] blank to default url.
nvm uninstall <version> : The version must be a specific version.
nvm use [version] [arch] : Switch to use the specified version. Optionally specify 32/64bit architecture.
nvm use <arch> will continue using the selected version, but switch to 32/64 bit mode.
nvm root [path] : Set the directory where nvm should store different versions of node.js.
If <path> is not set, the current root will be displayed.
nvm version : Displays the current running version of nvm for Windows. Aliased as v.

4、管理nodejs

1、查看本地安装的所有版本;有可选参数available,显示所有可下载的版本。

nvm list [available]

2、安装,命令中的版本号可自定义,具体参考命令1查询出来的列表

nvm install 12.16.1

3、使用特定版本

nvm use 12.16.1

4、卸载

nvm uninstall 12.16.1

5、命令提示

1
2
3
4
5
6
7
8
9
10
11
12
* nvm arch :显示node是运行在32位还是64位。
* nvm install <version> [arch] :安装node, version是特定版本也可以是最新稳定版本latest。可选参数arch指定安装32位还是64位版本,默认是系统位数。可以添加--insecure绕过远程服务器的SSL。
* nvm list [available] :显示已安装的列表。可选参数available,显示可安装的所有版本。list可简化为ls。
* nvm on :开启node.js版本管理。
* nvm off :关闭node.js版本管理。
* nvm proxy [url] :设置下载代理。不加可选参数url,显示当前代理。将url设置为none则移除代理。
* nvm node_mirror [url] :设置node镜像。默认是https://nodejs.org/dist/。如果不写url,则使用默认url。设置后可至安装目录settings.txt文件查看,也可直接在该文件操作。
* nvm npm_mirror [url] :设置npm镜像。默认是 https://github.com/npm/cli/archive/。如果不写url,则使用默认url。设置后可至安装目录settings.txt文件查看,也可直接在该文件操作。
* nvm uninstall <version> :卸载指定版本node。
* nvm use [version] [arch] :使用制定版本node。可指定32/64位。
* nvm root [path] :设置存储不同版本node的目录。如果未设置,默认使用当前目录。
* nvm version :显示nvm版本。version可简化为v。
Author: jimmy367
Link: http://www.ohtudou.com/2020/03/22/use-nvm/
Copyright Notice: All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.
支付宝打赏