Please note you’re server is running on your computer when typing npm start in command prompt in Windows. It is not a constant live version on a server. The exercise must be running live to be tested by freeCodeCamp to pass test when link is pasted in solution link.
Rather download replit version and follow instructions on freeCodeCamp. Meet the Node console.
Remember to copy you’re live link from New Tab in replit window and pastein Solution Link on freeCodeCamp Back End Development and APIs Meet the Node console.
I know this is an old thread but if the code you posted is all the code you have you are missing the export at the bottom of the file.
let express = require('express');
let app = express();
console.log("Hello World");
app.get("/",(req,res)=>{
res.json("Hello Express");
})
module.exports = app;
You should be using res.send and not res.json when sending plain strings, but the challenge tests do not care as far as I can tell. Later backend challenges might though just so you are aware of it.