安装npm install的时候遇到以下问题:
npm ERR! cb() never called!
npm ERR! This is an error with npm itself. Please report this error at:
npm ERR! <https://npm.community>
npm ERR! A complete log of this run can be found in:
npm ERR! /***/.npm/_logs/2021-06-06T08_14_08_150Z-debug.log
好家伙,npm这玩意还自带bug啊?于是网上一通搜索尝试,终于找到了解决方案。
有的说是用管理员权限打开cmd命令行窗口,这个我没有尝试,因为我是直接在vscode里面的Terminal里面打开的,直接输入以下命令清除你的npm缓存(如果是mac或者linux在前面加上管理员权限sudo:
npm cache clean -f
清除完成之后我就可以使用npm install安装了。
网上很多文章都写了说需要重新安装稳定版之类的操作,如下:
1、清除完缓存后,安装最新版本的Node helper:
npm install -g n
- 然后安装npm包管理助手
npm install -g n --force
- 用n助手安装最新的稳定版的node
n stable
自此应该就全部修复完毕,运行npm install,开始你的前端之旅吧!
网友评论