-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
44 lines (34 loc) · 1.3 KB
/
index.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
34
35
36
37
38
39
40
41
42
43
44
/*
Server side code need for the application
*/
const app = require("express")(); // the express to get the app
const server = require("http").createServer(app); //create server and pass to the application
const cors = require("cors"); // to allow or restrict requested resources on a web server (will be usefull in deployment)
// the signalling server
const io = require("socket.io")(server, {
cors: {
origin: "*",
methods: ["GET", "POST"]
}
});
app.use(cors());
const PORT = process.env.PORT || 5000;
// const PORT = 5000;
// first message when localhost:5000 is accessed
app.get("/", (req, res) => {
res.send('Server is running.');
});
io.on('connection', (socket) => { //socket is used for real-time data connection ether audio, data, video
socket.emit('me', socket.id);
socket.on('disconnect', () => {
socket.broadcast.emit("callended");
});
socket.on("calluser",({ userToCall, signalData, from, name}) => {
io.to(userToCall).emit("calluser", {signal: signalData, from, name});
});
socket.on("answercall", (data) => {
io.to(data.to).emit("callaccepted", data.signal);
});
});
server.listen(PORT, () => console.log(`Server listening on port ${PORT}`));
// server.listen(PORT, () => console.log('Server listening on port ${PORT}'));