vue项目npm报Unexpected end of JSON input while parsing near

今天将写的vue项目复制了一份(除node_modules)发到了另一个电脑上,在进行npm install 命令的的时候一直报一个错误"Unexpected end of JSON input while parsing near";
查阅资料后找了几种解决办法,大家可以尝试尝试

1、先强制清除缓存再执行npm install

npm cache clean --force
npm install

2、有可能是node和npm版本不匹配造成的

npm install -g n //n是用来管理node版本的
//如果上面的命令执行后报错了执行下面的命令
npm install -g n --force
//然后再清除缓存
npm cache clean --force
npm install

我是用第二种方法才处理成功的。

你可能感兴趣的:(vue项目npm报Unexpected end of JSON input while parsing near)