From 6b1bd191ef7c931bcc542297a5326e527301c319 Mon Sep 17 00:00:00 2001 From: Jonasz Bigda Date: Thu, 8 Oct 2020 11:56:30 +0200 Subject: [PATCH] print port on startup --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index b2690f4..6644915 100644 --- a/app.js +++ b/app.js @@ -17,7 +17,7 @@ async function startServer() { console.log("Server Startup Failed"); return; } - console.log("Server is running"); + console.log(` Server is listening at: ${port} `); }); }