看后面那么多404想必是因为网络引起,安装出错,于是于是去查了一下,原来npm,也像Linux的软件一样有自己的镜像源,感觉不错,虽然也存在依赖关系,非常不错、
下面就是切换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
如果还是失败就把三个方法都做一次
时间: 2024-10-16 23:37:04