12 lines
237 B
TypeScript
12 lines
237 B
TypeScript
|
|
import express, { Request, Response } from "express";
|
||
|
|
|
||
|
|
const app = express();
|
||
|
|
|
||
|
|
app.get("/", (req: Request, res: Response) => {
|
||
|
|
res.send("Hello World");
|
||
|
|
});
|
||
|
|
|
||
|
|
app.listen(3000, () => {
|
||
|
|
console.log("Server is running on port 3000");
|
||
|
|
});
|