mirror of
https://github.com/randyjc/Rahoot.git
synced 2026-03-13 20:15:35 +01:00
15 lines
240 B
JavaScript
15 lines
240 B
JavaScript
import { Server } from "socket.io"
|
|
|
|
const io = new Server({
|
|
cors: {
|
|
origin: "*",
|
|
},
|
|
})
|
|
|
|
io.on("connection", (socket) => {
|
|
console.log("a user connected")
|
|
io.to(socket.id).emit("message", "Hello from server")
|
|
})
|
|
|
|
io.listen(5057)
|