initial commit

This commit is contained in:
Cozma Rares
2023-04-01 19:36:29 +03:00
commit ddc4ec100d
18 changed files with 1736 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import express, { Application, Request, Response } from "express";
const PORT = process.env.PORT || 3000;
const app: Application = express();
app.get("/", (req: Request, res: Response) => {
res.send("Hello, world!");
});
app.listen(PORT, () =>
console.log("Server listening on http://localhost:" + PORT)
);