print port on startup

This commit is contained in:
2020-10-08 11:56:30 +02:00
parent 75b7fe3306
commit 6b1bd191ef

2
app.js
View File

@@ -17,7 +17,7 @@ async function startServer() {
console.log("Server Startup Failed"); console.log("Server Startup Failed");
return; return;
} }
console.log("Server is running"); console.log(` Server is listening at: ${port} `);
}); });
} }