在运行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! /Users/lenno/.npm/_logs/2019-04-04T08_14_08_150Z-debug.log
顿时方了,网上一顿猛搜,终于找到解决方案,跟我一步步修复该问题。
- 以管理员模式打开cmd清除你的npm缓存 (mac电脑在npm前加sudo):
npm cache clean -f
- 清除完缓存后,安装最新版本的Node helper:
npm install -g n
- 然后安装npm包管理助手
npm install -g n --force
- 用n助手安装最新的稳定版的node
n stable
自此我们已经修复完毕,运行npm install,尽情的挥洒你的灵感吧。