npm install 报错 汇总 - 持续更新中
程序员文章站
2022-07-08 17:23:19
...
1、npm install 报错:
1.NPM Unexpected end of JSON input while parsing near
2.npm ERR! A complete log of this run can be found in:
解决办法:
首先:
更新npm版本命令:
npm install npm -g 要记住全局更新
淘宝镜像命令:cnpm install npm -g 淘宝镜像会比较快
再查看一下npm版本:npm -v
其次:
npm install --registry=https://registry.npm.taobao.org --loglevel=silly:
最后:
npm cache clean --force
2、npm下载失败?
解决方案:修改npm镜像源。
修改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
Mac系统下,.npmrc这样设置:
打开终端,切换到根路径
一、open .npmrc(会提示找不到该文件,没关系)
二、npm config set registry https://registry.npm.taobao.org
三、再次跳到步骤一,就能看到npmrc文件中已经设置好了registry
搜索镜像: https://npm.taobao.org
建立或使用镜像,参考: https://github.com/cnpm/cnpmjs.org
(声明:本文参考网络上的解决方案)