淘宝NPM镜像使用
镜像使用方法
1.config命令
npm config set registry https://registry.npm.taobao.org npm info underscore (如果上面配置正确这个命令会有字符串response)
2.命令行指定
npm --registry https://registry.npm.taobao.org info underscore
3.编辑 ../.npmrc文件,在文件后面加如下代码 -- 推荐使用,将配置写死,下次直接用
registry = https://registry.npm.taobao.org
注:3种办法都能解决问题,根据自身需求自行选择
时间: 2024-10-22 23:30:34