Project wont load in

When I try to load in my project it wont start it’s just stuck in the loading site saying “Starting…”.

It worked this morning

Hey @skiddip! I remixed your project to take a look – it seems like you’re just missing the app.listen() call which tells the server to listen for incoming requests. That’s why the app isn’t loading!

Try adding this code to the bottom of your server.js file and it should start loading for you:

var listener = app.listen(process.env.PORT, function () {
  console.log('Your app is listening on port ' + listener.address().port);
});

Let me know if that doesn’t work or if you have any further problems!

1 Like