iching-broker-level2/backend/server.ts
Christopher Hase ff7bf73e93
All checks were successful
ci / build (push) Successful in 1m23s
add http-server part 8.3 finish
2025-04-14 11:24:56 +02:00

17 lines
373 B
TypeScript

import express from 'express';
import cors from 'cors';
import { executeCommand } from './broker.js';
const app = express();
const port = 8090;
app.use(cors());
app.post('/command', (req, res) => {
executeCommand();
res.status(200).send('Command executed\n');
});
app.listen(port, '0.0.0.0', () => {
console.log(`Server läuft auf http://0.0.0.0:${port}`);
});