Tell us what’s happening:
https://3000-freecodecam-boilerplate-v19h8yruuxw.ws-us117.gitpod.io please help me pass this code
###Your project link(s)
solution: https://3000-freecodecam-boilerplate-v19h8yruuxw.ws-us117.gitpod.io
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 Edg/131.0.0.0
Challenge Information:
Basic Node and Express - Start a Working Express Server
let express = require(‘express’);
const res = require(‘express/lib/response’);
let app = express();
app.get(“/”,(req,res) => {
res.send(“Hello Express”);
}); this is my entire code. I was asked to use app.method to serve the string"Hello Express"
If that really is all the code you have in the myApp.js file then you have removed the needed export at the bottom module.exports = app;
, add it back.
If you need more help, please share the code as explain on the challenge page or post a repo.