feat: initial commit with Express server and Socket.IO integration

- Added package.json for project metadata and dependencies
- Created public/index.html for the front-end interface
- Implemented server.js to set up an Express server with Socket.IO for real-time communication
This commit is contained in:
2026-02-21 23:38:02 +01:00
parent 053e7cf09b
commit ec33458521
5 changed files with 1283 additions and 0 deletions

11
public/index.html Normal file
View File

@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WebSite</title>
</head>
<body>
<h1>MOIN</h1>
</body>
</html>