index.js 202 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 const express = require("express"); const app = express(); const PORT = 80; function handleListening() { console.log(`Listening on: http://localhost:${PORT}`); } app.listen(PORT, handleListening);