-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
33 lines (28 loc) · 959 Bytes
/
server.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
const express = require('express');
const http = require('http');
const socketIo = require('socket.io');
const app = express();
const server = http.createServer(app);
const io = socketIo(server, {
cors: {
origin: "http://127.0.0.1:3000", // Anpassen je nach deiner Client-Anwendung
methods: ["GET", "POST"]
}
});
const port = 3000;
// Middleware und statische Dateien
app.use(express.static(__dirname + '/public'));
io.on('connection', (socket) => {
// Nachricht empfangen und an alle Clients im Raum senden
socket.on('send-message', (message, room) => {
io.emit('newMessage', message);
});
// Raum verlassen, wenn die Verbindung geschlossen wird
socket.on('disconnect', () => {
console.log(`Verbindung geschlossen: ${socket.id}`);
});
});
// Starte den Server
server.listen(port, () => {
console.log(`Server läuft auf http://localhost:${port}`);
});