-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
45 lines (35 loc) · 1.02 KB
/
index.js
File metadata and controls
45 lines (35 loc) · 1.02 KB
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
45
const express = require('express'); // Import Express
const http = require('http'); // Import HTTP module
const app = express(); // Create an Express app
const server = http.createServer(app); // Create a server using the HTTP module
const cors = require('cors');
const io = require('socket.io')(server, {
cors: {
origin: '*',
methods: ['GET', 'POST', 'PUT', 'DELETE']
}
});
app.use(cors()); // Apply CORS middleware
const PORT = process.env.PORT || 8080;
app.get('/', (req, res) =>{
res.send('server is running');
});
io.on('connection', (socket) => {
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 is listening on ${PORT}`);
});