Javascript von ChatGPT
erste ganz gute Simulation
This commit is contained in:
9
JS/server.js
Normal file
9
JS/server.js
Normal 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}`);
|
||||
});
|
||||
Reference in New Issue
Block a user