Hi there
What would you want the response to be? The server seems to be up and running, there is just no routes configured in your express app for the root.
You’re code is probably something like
app.use('/something, (req, res) => { // do stuff }))`
so the backend would give a response on /something
but not on /
To what routes is your front-end code making requests to.