Basic Node and Express - Meet the Node console

Tell us what’s happening:

is it my url that is not correct or , why is it not printing to the console log, everything seams to be well but i don’t know why i am not passing when i submit the url

###Your project link(s)

solution: https://3000-freecodecam-boilerplate-pxgdok5vddk.ws-eu117.gitpod.io

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36

Challenge Information:

Basic Node and Express - Meet the Node console

it is the right url, but did you restart the server after making changes?

Yes, i did. the error it is giving me that : “Hello World” should be in the console , error in the output,

Are you logging it using console.log? It is not asking you to res it, but to log it.

Tell us what’s happening:

i am still very stuck with this i don’t know what to do anymore,

###Your project link(s)

solution: https://3000-freecodecam-boilerplate-y0ovnr6184l.ws-eu117.gitpod.io

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36

Challenge Information:

Basic Node and Express - Meet the Node console

you should answer to the questions people are asking. Also you should provide your code.

let express = require(‘express’);
let app = express();

console.log(“Hello World”);

module.exports = app;
This is my code that i have provided,
i am always running my server with this command , node myApp.js
and the i see hello world printed in the terminal, but when i copy the link that and paste it , it fail

you should use npm run start, not node myApp.js as this last one doesn’t start the server, only run the code in the file once and then stops

If you want to use node yourself you would need to run node server.js to start the server

Thank you very, very much.