index.js 202 Bytes
const express = require("express");
const app = express();
const PORT = 80;

function handleListening() {
    console.log(`Listening on: http://localhost:${PORT}`);
}

app.listen(PORT, handleListening);