added js backend

This commit is contained in:
2026-02-23 22:47:28 +01:00
parent 8a528d46ed
commit 3e0054a0b9
9 changed files with 904 additions and 5 deletions

7
backend/server.js Normal file
View File

@@ -0,0 +1,7 @@
import express from "express";
const app = express();
app.listen(8001, () => {
console.log("Server is running on port 8001");
});