在centos7中,安装好node和express,将项目代码上传,启动出错。好像是少模块,但是使用npm install 安装那个模块还是报错。[ws@VM_86_94_centos Online-retailers]$ npm startds@0.0.0 start /test/projrct/Online-retailersnode ./bin/wwwmodule.js:471throw err;^Error: Cannot find module 'async/each'
1 回答
江户川乱折腾
TA贡献1851条经验 获得超5个赞
1、安装依赖
npm install
ps: 如果你只是缺了async这个包,那就单独装上:
npm install --save async
2、启动应用
npm start
添加回答
举报
0/150
提交
取消