Error:Cannot find module ‘body-parser‘ | Require stack
解决方案:
1、缺啥装啥
npm install --save body-parser
2、清除 npm 缓存;删除 node_modules
目录和 package-lock.json
文件;重新安装依赖
npm cache clean --force
rm -rf node_modules package-lock.json
npm install
3、使用yarn