Heroku nodejs应用程序错误找不到app / index.js

时间:2018-01-29 00:32:43

标签: node.js heroku

我继续收到以下错误日志

  

Heroku错误:找不到模块'/app/index.js'

在本地服务器上运行良好吗?

State changed from starting to crashed
rwa@1.0.0 start /app
node index.js

module.js:538
throw err;

Error: Cannot find module '/app/index.js'
   at Function.Module._resolveFilename (module.js:536:15)

我似乎无法让它在Heroku部署上工作,任何想法?我添加了正确的Procfile(web:node index.js),甚至在npm start文件中正确添加了package.json

1 个答案:

答案 0 :(得分:0)

通过在package.json中添加启动脚本将修复您的问题,因为Heroku在package.json中查找启动脚本,如果它没有找到它运行其默认启动脚本导致错误