因为国内使用NPM下载包通常会比较慢,所以我们通过设置下载地址,使用国内的淘宝镜像
1、让你知道 npm 发的每一个请求
npm config set loglevel http,
2、关闭那个无聊的进度条
npm config set progress false
3、 从淘宝的服务器下载各种包。不过这会让你在运行 npm adduser 的时候出问题,想要恢复成原样,只需要运行 npm config delete registry 即可。
npm config set registry https://registry.npm.taobao.org/
网友评论