温州市建设安监局网站,长春 做网站多少钱,网络营销就是,免费杂志排版软件1.切换到淘宝镜像
加快npm包的下载速度#xff0c;
//已失效
//npm config set registry https://registry.npm.taobao.org/
npm config set registry https://registry.npmmirror.com这会将npm的注册表设置为淘宝镜像
查看#xff1a;
npm config get registry如果返回的…1.切换到淘宝镜像
加快npm包的下载速度
//已失效
//npm config set registry https://registry.npm.taobao.org/
npm config set registry https://registry.npmmirror.com这会将npm的注册表设置为淘宝镜像
查看
npm config get registry如果返回的结果是 https://registry.npmmirror.com则表示切换淘宝镜像成功。
2.切换回官方npm注册表
切换镜像可能会有一些副作用比如某些包可能在淘宝镜像上不存在或更新较慢这时可随时切换回官方npm注册表
npm config set registry https://registry.npmjs.org/查看
npm config get registry如果返回的结果是http://registry.npmjs.org/ 则表示切换成官方npm注册表成功。
参考https://blog.csdn.net/qq_27487739/article/details/135247556