npm常见问题解决

方案一(亲测已解决):

清除缓存
npm cache clean --force
1
再安装
npm install

方案二(亲测):
第一次按照上面的方法 npm cache clean --force 轻松就解决问题了,但是今天我用的时候发现依然报错:

npm ERR! Unexpected end of JSON input while parsing near...
......
npm ERR! A complete log of this run can be found in:
......

于是我就按着上次的方法发现不行,还是报错,我就又连着试了好几次还是不行
后来查阅各种方案,发现只需要把镜像改一下就行了,具体看下面

第一步还是:npm cache clean --force
npm cache clean --force

第二步:切换为淘宝镜像
npm config set registry https://registry.npm.taobao.org/
npm config get registry https://registry.npm.taobao.org/

验证时候切换淘宝镜像成功,命令行输入: npm config list
3.第三步:

npm install

注意:下面走捷径啦!!!!
直接输入:npm install --global cnpm
然后使用:cnpm install

执行上面命令后,发现问题解决!!!
最简单解决就是输入 npm install --global cnpm 然后使用 cnpm install 装包
原因分析:npm官方服务器在国外,网络受阻性大、而淘宝的cnpm在国内,所以用淘宝的快就ok了

你可能感兴趣的:(npm常见问题解决)