From 4153fbbf634aff698ae75fdd83a9ff7a2fd6d792 Mon Sep 17 00:00:00 2001 From: Thomas Wade Date: Wed, 17 Oct 2018 16:59:30 +1030 Subject: [PATCH] Use a more reasonable and easy-to-remember port Cmon now, 2019 is a bad port --- server.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server.js b/server.js index 04be1f4..8bcee99 100644 --- a/server.js +++ b/server.js @@ -27,8 +27,8 @@ app.post("/writenews", function(req, res) { }); // Start listening -app.listen(2019, function (){ - console.log("Listening on port 2019"); +app.listen(8080, function (){ + console.log("Listening on port 8080"); }); // Process incoming posts