From d5c6745e2aab548fe797697aa1d3af40e3e431c0 Mon Sep 17 00:00:00 2001 From: Shadowfacts Date: Mon, 18 Feb 2019 15:31:02 -0500 Subject: [PATCH] Update --- index.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/index.js b/index.js index d71f916..356ea93 100644 --- a/index.js +++ b/index.js @@ -13,7 +13,11 @@ const app = express(); // }); -const port = process.env.PORT || 3000; +app.get("/", (req, res) => { + res.end("Hello, world!"); +}); + +const port = process.env.PORT || 8083; app.listen(port, () => { console.log(`Listening on ${port}`); }); \ No newline at end of file