运行VUE项目时,出现npm ERR! A complete log of this run can be found in:...报错

运行VUE项目时,出现npm ERR! A complete log of this run can be found in:报错时,分享以下一种解决方案。

本机的 node版本如下

运行VUE项目时,出现npm ERR! A complete log of this run can be found in:...报错_第1张图片

解决方法

 1. 删除项目的 node_modules 依赖包

2. 执行 npm cache clean --force 清理缓存

3. 在项目文件夹下执行npm install 

4.执行npm run即可

加快npm的下载速度

npm拉取依赖包需要访问国外服务器,往往速度较慢,可通过以下两种方法使用国内镜像源:

方法一:

直接安装cnpm ,并更改服务器地址为淘宝的国内地址

命令:

npm install -g cnpm --registry=https://registry.npm.taobao.org

以后安装直接采用cnpm替代npm, 例如原生npm命令为:npm install uniq --save,cnpm命令为:cnpm install uniq --save

方法二

替换npm仓库地址为淘宝镜像地址

命令:

npm config set registry https://registry.npm.taobao.org

查看是否更改成功:

npm config get registry

以后安装时,依然用npm命令,便可以由国内镜像源下载。

你可能感兴趣的:(vue.js,npm,前端)