diff --git a/index.js b/index.js index b6aa51a..f20615d 100644 --- a/index.js +++ b/index.js @@ -4,7 +4,7 @@ const port = 3002; app.get("/", (req, res) => { console.log(`${new Date()} ${req.method} ${req.path}`); - res.send("Hello world!"); + res.send("hello"); }); app.listen(port, () => console.log(`Example app listening on port ${port}!`));