Files
bun.sh/bench/snippets/express-hello.mjs
2024-10-06 07:11:18 -07:00

14 lines
251 B
JavaScript

import express from "express";
const app = express();
const port = 3000;
var i = 0;
app.get("/", (req, res) => {
res.send("Hello World!" + i++);
});
app.listen(port, () => {
console.log(`Express app listening at http://localhost:${port}`);
});