计算机知识分享网

【nodejs】Nodejs清除本地缓存的modules依赖

1、将node-modules文件夹先删除
2、清理缓存命令:
npm cache clean --force
3、重新安装一次即可
npm install /cnpm install

#Nodejs