这个问题算是自己挖的坑自己往里面跳了
一,错误描述:
npm下载依赖报错
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! C:\Users\ASUS\AppData\Roaming\npm-cache_logs\2024-03-21T01_36_07_804Z-debug.log
二,解决方案:
第一个,三板斧:事实证明没用
- 删除下载好的node_modules
- 删除package-lock.json文件
- 清除npm缓存 npm cache clean --force
- npm install
第二个,如果三板斧好不了,那就尝试切换npm镜像:此时我的问题依然没好
//查看源
npm config get registry
//更换源
npm config set registry https://registry.npmjs.org
//淘宝镜像
npm config set registry https://registry.npmmirror.com
第三个,你去看一下package.json里面用的到底是npm isntall 还是pnpm install
"i": "pnpm install",
当我看到是pnpm的时候心态炸裂,出现问题解决问题,没想到是我一开始就弄错了,瞎折腾,白浪费时间。
然后又进一个坑里面了,我用的是nvm,pnpm的安装还又出问题了。