erste lauffähige node.js / reakt - Version

This commit is contained in:
rxf
2025-09-21 15:21:43 +02:00
parent efe6ff4864
commit 6f93db4a12
5 changed files with 986 additions and 0 deletions

9
JS/server.js Normal file
View File

@@ -0,0 +1,9 @@
const express = require("express");
const app = express();
const port = 3000;
app.use(express.static("public"));
app.listen(port, () => {
console.log(`Observatory simulation running at http://localhost:${port}`);
});