What is the error here?
app.get(“/json”, (req, res) => {
const message = “Hello json”;
let response;
if (process.env.MESSAGE_STYLE = “uppercase”) {
response = message.toUpperCase();
} else {
response = message;
}
const data = { “message”: response };
res.json(data);
});
solution: boilerplate-express - Replit
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36
Challenge: Basic Node and Express - Use the .env File
Link to the challenge: