计算机知识分享网
首页
博客
分类
关于
RSS
【nodejs】Nodejs清除本地缓存的modules依赖
2024-10-31
1、将node-modules文件夹先删除
2、清理缓存命令:
npm cache clean --force
3、重新安装一次即可
npm install /cnpm install
#Nodejs