vue2/3安装依赖报错,终极解决方案
错误复现
npm ERR! cb.apply is not a function(npm ERR! A complete log of this…)
解决方案(终极)
// 删除依赖
rm -rf node_modules
// 强制清除npm缓存
npm clean cache --force
// 安装依赖
npm install
npm ERR! cb.apply is not a function(npm ERR! A complete log of this…)
// 删除依赖
rm -rf node_modules
// 强制清除npm缓存
npm clean cache --force
// 安装依赖
npm install