Не работает сервер на heroku, как исправить?

При get запросе возникает ошибка

2020-10-29T13:18:51.321673+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=frozen-sands-21043.herokuapp.com request_id=d28b58f9-be90-4bbb-87b9-b2d64eea5261 fwd="188.163.31.152" dyno= connect= service= status=503 bytes= protocol=https

var http=require('http');
var port=process.env.PORT||'8080';
http.createServer().on('request', function(req, res){
  res.end('Hello');
}).listen(port,function(){
  console.log('Server Run');
});

Ответы (0 шт):