Basic Node and Express - Use the .env File

Step is not lining up will the instructions. Tried following the hint for replit and not going through in the secret section.

Tell us what’s happening:
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/107.0.0.0 Safari/537.36

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

Link to the challenge:

It is hard for us to help when you don’t share your code

let express = require('express');
let app = express();
console.log("Hello World");

app.get("/", function(req, res) {
  res.sendFile(__dirname + "/views/index.html");
  app.use("/public", express.static(__dirname + "/public"));
});

app.get("/", function(req, res) {
  res.send("Hello Express");
});

app.get("/json", (req, res) {
  req.json({
    message: "Hello json"
  });
app.get("/json", (req, res) => {
    message: "Hello JSON"
  });
});

I’ve edited your code for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').

Where is the logic involving the environment variable

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