backend/frontend init

This commit is contained in:
qajus 2025-04-29 22:37:28 +02:00 committed by Rudi Regentonne
parent 518c975791
commit 4f44b171b9
24 changed files with 11303 additions and 0 deletions

View file

@ -0,0 +1,13 @@
import express, { Request, Response } from 'express';
const app = express();
const port = 3000;
app.get('/', (req: Request, res: Response) => {
res.send('Hallo, Welt mit TypeScript!');
});
app.listen(port, () => {
console.log(`Server läuft auf http://localhost:${port}`);
});