Basic Node and Express - Use the .env File

Tell us what’s happening:

app.get("/json", (request, response) => {
  if (process.env.MESSAGE_STYLE === "uppercase") {
    response.json({ message: "HELLO JSON" });
  }
   response.json({ message: "Hello json" });
});

why this piece of code fails test cases

Your project link(s)

solution: https://giddy-cod-school-uniform.cyclic.app/json

Your browser information:

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

Challenge: Basic Node and Express - Use the .env File

Link to the challenge:

As far as I can tell, the code you posted should pass. But you should post your repo link.

Might also be the host or the deployment that is the issue. Do you see any errors in the host logs when you submit?

Maybe just use the Replit starter instead.