前端VUE项目 npm install 提示报错:
npm WARN deprecated querystring@0.2.0: The
npm ERR! cb() never called!npm ERR! This is an error with npm itself. Please report this error at:
npm ERR! <https://npm.community>
VUE 初始化 npm install 如果你尝试了网上所有办法 报其他错误的情况下 可以考虑是否是网络不好,可以尝试使用cnpm 。
======================= 下面是我解决问题的步骤===================================
首先删除 node_modules 还有 package-lock.json 看好了 这里是 有个lock.json
我执行的顺序然后成功运行项目:
先执行 下面
npm install -g n --force
设置国内镜像 这样依赖下载快
npm install -g cnpm --registry=https://registry.npm.taobao.org
下载依赖
cnpm install
运行项目
cnpm run serve (这个运行的指令 你要去看 package.json 里面 )
===============================================================
其他人博客写的顺序
一、首先要以管理员模式打开cmd清除你的npm缓存 : npm cache clean -f
二、清除完缓存后,安装最新版本的Node helper: npm install -g n
npm install -g n --force
npm install -g cnpm --registry=https://registry.npm.taobao.org
cnpm install
cnpm run serve
针对 npm ERR! cb() never called! 问题_weixin_30852419的博客-CSDN博客