Tell us what’s happening: Why did my answer come out wrong? My answer is
app.get(“/json”, (req, res) => {
if (process.env[“MESSAGE_STYLE”] == “uppercase”){
res.json({“message”: “HELLO JSON”})
} else {
res.json({“message”: “Hello json”})
}
})
and I get
// running tests The response of the endpoint
/json
should change according to the environment variable
MESSAGE_STYLE
// tests completed // console output [Error: Not found]
Describe your issue in detail here.
Your code so far
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36
Challenge: Basic Node and Express - Use the .env File
Link to the challenge:
https://boilerplate-npm.tffree.repl.co/