在mac要升级node很简单,使用 npm 安装一个模块
n
然后就可以随意切换node了
- 其实 windows 上也很简单的,
- (1)先看看node安装在哪里,在开始菜单可以查看到
- (2)然后在“程序和功能”中卸载 node
- (3)在 https://registry.npmmirror.com/binary.html?path=node/ 找到一个 latest 版本,比如: https://registry.npmmirror.com/binary.html?path=node/latest-v14.x/ 下载下来
- (4)下载
msi
文件,然后直接安装,安装会更改PATH
的,可以要去调整一下顺序,把 node 往前挪动几位。 - 这样就更新好了
node --version
npm version
npm config list
- 运行上面的命令,除版本变化外,其他和原来的一样;
- 以下这些之前的配置不受影响;
npm config set prefix "D:\repos_node\npm_global"
npm config set cache "D:\repos_node\npm_cache"
npm config set registry https://registry.npmmirror.com
npm i -g npmmirror-config-china --registry=https://registry.npmmirror.com
npm i -g yarn
End