在Vue项目中使用npm install 安装项目依赖是,安装到中途突然报了如下错误
错误内容:
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 install
执行之后,发现项目依赖已经安装成功