npm error ELIFECYCLE on ctrl+c npm error ELIFECYCLE on ctrl+c heroku heroku

npm error ELIFECYCLE on ctrl+c


In the index.js can you try putting the following code:

process.on('SIGINT', () => {    process.exit();});

I think the issue is that Ctrl+C kills the application but there is still some process running in the background. This will ensure that it is terminated.

Hope this helps!