国内部分依赖源拉取存在莫名其妙的丢失,因此,可以将npm的源切换为淘宝镜像源,可以加快拉取速度。也可以全局安装淘宝镜像,然后cnpm
运行命令
淘宝镜像:https://registry.npm.taobao.org 这个2022 年 05 月 31 日零时起停止服务
# 注意:淘宝镜像:https://registry.npm.taobao.org这个2022 年 05 月 31 日零时起停止服务
# 1、全局安装淘宝镜像,完成之后可以通过cnpm install安装项目依赖
npm install -g cnpm --registry=https://registry.npmmirror.com
#2、换源安装淘宝镜像
npm config set registry https://registry.npmmirror.com
#npm设置回本源
npm config set registry https://registry.npmjs.org