Basic Node and Express - Use the .env File

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:

I think you didn’t want to use an assignment operator here?

1 Like

Thanks! silly mistake but sometimes it happens.

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.