Javascript von ChatGPT

erste ganz gute Simulation
This commit is contained in:
rxf
2025-09-21 09:03:12 +02:00
parent 799f798316
commit 361653b88a
6 changed files with 987 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}`);
});