npm
报错:
1.npm i 卡在 idealTree:SmtWeb: sill idealTree buildDeps 没进度
由于前几天我使用vuepress
后,导致node版本切换到了20.11.1
后忘记切换回来,导致今天在npm i
vue2版本的项目时,出现这个报错信息。
解决办法,首先要通过nvm
切换到node版本16
以下,比如我这边是14.21.3
然后npm i
操作即可
2.request to https://registry.npm.taobao.org/@xkeshi%2fvue-barcode failed, reason: certificate has exp
这个报错是因为淘宝镜像的地址早就更换了,导致无法从之前的淘宝镜像地址中下载插件。
npm config set registry https://registry.npmmirror.com
此时,只需要执行上面的代码就可以更改淘宝镜像了,更改成功后,再次通过npm i
即可安装插件。