nvm(nodejs版本管理工具)

温馨提示:

如果本地有安装nodejs版本,请先卸载再进行安装nvm

nvm安装步骤:

1、nvm下载:https://github.com/coreybutler/nvm-windows/releases
2、查看安装是否成功:nvm -v
3、查看安装的node版本列表:nvm ls 或者nvm list
4、使用nvm install []命令下载需要的版本,version参数是版本, arch参数表示系统位数,默认是64为。

例如:nvm install 12.10.0 (安装12.10.0版本),nvm install 6.12.2 32 (在32位系统中安装6.9.0版本)

安装完之后:立刻执行 nvm use 12.10.0(要不然如果再安装其他的node版本,将不起作用)

5、切换node版本,使用nvm use
6、卸载node版本、使用nvm uninstall
7、node安装时可能比较慢,可以使用淘宝影像 (试过没用)
进去安装路径:C:\Users\你的用户名\AppData\Roaming\nvm
settings.txt
加入:

node_mirror: https://npm.taobao.org/mirrors/node/
npm_mirror: https://npm.taobao.org/mirrors/npm/


安装:nvm install 12.10.0 

查看:nvm ls

切换:nvm use 12.10.0

卸载:nvm uninstall 12.10.0

 

 

 

其他配置信息:

yarn官网:https://yarn.bootcss.com/docs/getting-started/

1、查看一下当前源

yarn config get registry
 

2、切换为淘宝源

yarn config set registry https://registry.npm.taobao.org
 

3、或者切换为自带的

yarn config set registry https://registry.yarnpkg.com

 

npm
1、查看当前源

npm config get registry

2、切换为淘宝源

npm config set registry https://registry.npm.taobao.org

3、切换为自带源

npm config set registry https://registry.yarnpkg.com

你可能感兴趣的:(前端工具,nvm,node版本管理工具)