kidshift-be/src/index.ts

14 lines
235 B
TypeScript
Raw Normal View History

2024-06-15 07:19:16 +00:00
import express from "express";
const app = express();
const port = 3000;
app.get("/", (req, res) => {
res.send("Hello World!");
});
app.listen(port, () => {
console.log(`Server is running on http://localhost:${port}`);
});