npm install 安装很慢的解决方式
npm config set registry https://registry.npm.taobao.org/ //使用淘宝镜像
设置完成之后发现依然很卡,经查询发现该淘宝镜像已经在2022 年 05 月 31 日零时起停止服务了,
新的镜像域名更新为:https://npmmirror.com
所以设置为新的镜像域名即可解决问题
更换:npm config set registry https://registry.npmmirror.com
查看是否更换成功:npm config get registry
执行安装命令:npm install
可以使用:npm i -d 查看安装明细