解决npm install安装太慢
文章摘要
IMZ GPT-4
此内容根据文章生成,并经过人工审核,仅用于文章内容的解释与总结
投诉设置 npm registry
- 本文方法为将npm registry更改为淘宝镜像,提升安装速度。
1.临时使用
1 | npm --registry https://registry.npm.taobao.org install express |
2.持久使用
1 | npm config set registry https://registry.npm.taobao.org |
使用mac需要权限的话,前面需要加sudo,然后输入密码。
配置后可通过下面方式来验证是否成功:
1 | npm config get registry |
3.通过cnpm使用
1 | npm install -g cnpm --registry=https://registry.npm.taobao.org |
本文是原创文章,采用CC BY-NC-SA 4.0协议,完整转载请注明来自Imz
评论 ()