解决npm 安装依赖报错:npm ERR! Unexpected end of JSON input while parsing near '...^0.1.6","cross-

在Vue项目中使用npm install  安装项目依赖是,安装到中途突然报了如下错误

解决npm 安装依赖报错:npm ERR! Unexpected end of JSON input while parsing near '...^0.1.6

  错误内容:

npm ERR! Unexpected end of JSON input while parsing near '...^0.1.6","cross-spawn"'

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\82506\AppData\Roaming\npm-cache\_logs\2019-02-11T07_38_52_663Z-debug.log

之后几经周折,才找到解决办法

使用如下指令,清除npm编译的一些缓存

npm cache clean --force

运行成功之后如下

解决npm 安装依赖报错:npm ERR! Unexpected end of JSON input while parsing near '...^0.1.6

之后重新执行安装依赖命令

npm install

执行之后,发现项目依赖已经安装成功

解决npm 安装依赖报错:npm ERR! Unexpected end of JSON input while parsing near '...^0.1.6

 

你可能感兴趣的:(Vue)