最近在进行vue项目的初始化过程中出现错误,发现有一篇好的解决方案,分享给大家,原文连接
第一种方法
尝试进行npm install,如果还是不可以就尝试第二种方法,通常是没有装依赖导致的问题。
第二种方法
可以通过修改npm的配置文件让npm到另外的pacakge mirror站点去找package,通过如下命令
$ npm config set registry https://registry.npm.taobao.org
$ npm config set registry http://r.cnpmjs.org
或者:npm config set registry http://registry.npmjs.eu
随后再执行
npm install
然后就可以运行了
原文来源于:https://blog.csdn.net/sunqy1995/article/details/81408517