解决下包慢的问题(常用命令)
1.切换npm的下包镜像源
1.查看当前的下包镜像源
npm config get registry
2.将下包的镜像源切换为淘宝镜像源
npm config set registry= https://registry.npmmirror.com/
3.检查镜像源是否下载成功
npm config get registry
2. nrm
1.通过npm包管理器,将nrm安装为全局可用的工具
npm i nrm -g
2.查看所有可用的镜像源
nrm ls
3.将下包的镜像源切换为taobao镜像
nrm use taobao