-
Notifications
You must be signed in to change notification settings - Fork 105
Expand file tree
/
Copy pathserver.js
More file actions
28 lines (23 loc) · 700 Bytes
/
server.js
File metadata and controls
28 lines (23 loc) · 700 Bytes
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
const express = require("express")
const http = require("http")
const app = express()
const server = http.createServer(app)
const io = require("socket.io")(server, {
cors: {
origin: "http://localhost:3000",
methods: [ "GET", "POST" ]
}
})
io.on("connection", (socket) => {
socket.emit("me", socket.id)
socket.on("disconnect", () => {
socket.broadcast.emit("callEnded")
})
socket.on("callUser", (data) => {
io.to(data.userToCall).emit("callUser", { signal: data.signalData, from: data.from, name: data.name })
})
socket.on("answerCall", (data) => {
io.to(data.to).emit("callAccepted", data.signal)
})
})
server.listen(5000, () => console.log("server is running on port 5000"))