I am getting some kind of error when deploying my app to heroku using git hub. The problem is, I don\'t understand the heroku logs and the entailing errors. Here is the hero
You have to inform heroku where to start : missing script: start. In your package.json, you should have something like this:
missing script: start
"scripts": { "start": "node index.js" }
Where index.js is your entry point.
index.js
As an alternative, you can specify in Procfile:
Procfile
web: node index.js