解决 npm ERR! Unexpected end of JSON input while parsing near...

2019-12-23 15:49:11 浏览数 (1)

在安装 Vue cli 的过程中出现了 npm ERR! Unexpected end of JSON input while parsing near... 的错误

解决方法:

清除 cache

代码语言:javascript复制
npm cache clean --force

设置镜像(不使用淘宝镜像)

代码语言:javascript复制
npm set registry https://registry.npmjs.org/                 

0 人点赞