在使用npm过程中,肯定会遇到清缓存的情况,网上的命令一般为
bash
npm cache clear --force
有时笔者在清理缓存之后npm install
依然失败,仔细发现,执行该命令之后npm报了一个警告
bash
npm WARN using --force Recommended protections disabled.
意思是
bash
npm WARN using------force禁用推荐保护。
后来发现仍需继续执行一条命令才能清缓存成功
bash
npm cache verify
删除 "node_modules"文件夹,重新安装,运行下面的命令,即可重新安装依赖
npm install
完整清除缓存的截图为