时间久了,官方 node 版本一直在生,而本地的一直停滞不前。也想生到和官方一样的。咋操作呢。
操作一波
# 没错,对,就是安装 n, 这个 node 版本管理工具
npm i -g n
安装好 n 后,就可以使用它了。
常用命令
- n list 列出当前 node 的最新版本
- n stable 安装 node 最新稳定版
- n latest 安装最新版本
- n 11.12.0 安装指定的版本
安装镜像
# npm 安装淘宝镜像
npm config set registry http://registry.npm.taobao.org/
# 查看
npm config list
# yarn 安装淘宝镜像
yarn config set registry https://registry.npm.taobao.org/
# 查看 yarn config list
# 清理缓存
npm cache clean --force
yarn cache clean --force