Vue项目清理本地缓存并删除node_modules

824 阅读1分钟

在linux系统下,清缓存,删除node_modules

// 清理缓存
npm cache clean --force

// 执行递归删除node_modules
rm -rf node_modules

// 删除包版本锁
rm -rf package-lock.json

// 重新安装依赖
npm install

在windows系统下,清缓存,删除node_modules

// 清理缓存
npm cache clean --force

// powershell执行递归删除node_modules
rd -r node_modules

// 删除包版本锁
ri package-lock.json

// 重新安装依赖
npm install