参考:https://www.cnblogs.com/wangmeijian/p/7072053.html
当使用官方npm源安装各种包比较慢的时候,建议修改npm源地址
nrm工具提供了保存各种源的配置并且一键切换的能力
官方源可通过npm config list看到
metrics-registry = "https://registry.npmjs.org/"
本质的修改源方法:npm set registry https://registry.npm.taobao.org/
场景:
早上入职,切换为公司私有源,下午被开除了,回到家发现连不上(废话内网才能用,而且你都被干掉了),重新set registry为官方、三方源
麻烦
nrm 专门用于管理和快速切换私人配置registry的小工具~
安装方式:npm install nrm -g --save
使用姿势(此处taobaoMirror请自行定义):
增 nrm add taobaoMirror https://registry.npm.taobao.org/
删 nrm del taobaoMirror
查 nrm ls
测试 nrm test taobaoMirror
使用 nrm use taobaoMirror
场景:
入职后,nrm add shitCompany + nrm use shitCompany
被毕业,nrm del shitCompany + nrm use taobao(
标签:npm,use,nrm,前端,taobaoMirror,registry,https,随笔 From: https://www.cnblogs.com/tillnight1996/p/16758390.html