-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
63 lines (52 loc) · 1.63 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
// create app
const app = require('express')();
// create server and plug the app into it
const server = require('http').Server(app);
// for socket.io dependencies
const io = require('socket.io')(server);
// set port to listen on
const port = 8000;
// make server listen on set port
server.listen(port, () => {
console.log(`Server running on port ${port}`);
});
// serve static index.html file
app.get('/', (req, res) => {
res.sendFile(__dirname + '/public/index.html')
})
// serve static math.html file
app.get('/math', (req, res) => {
res.sendFile(__dirname + '/public/math.html')
})
// serve static physics.html file
app.get('/physics', (req, res) => {
res.sendFile(__dirname + '/public/physics.html')
})
// serve static chemistry.html file
app.get('/chemistry', (req, res) => {
res.sendFile(__dirname + '/public/chemistry.html')
})
// namespace (creates separation/groups for users)
const school = io.of('/school');
// logic on connection event in socket
school.on('connection', (socket) => {
// listen to join event
socket.on('join', (data) => {
//join the room
socket.join(data.room);
// send message to members of that room
school.in(data.room).emit('message', `New user joined the ${data.room} room!`);
})
// listen for 'message' event
socket.on('message', (data) => {
console.log(`message: ${data.msg}`);
// emit message to members of that room
school.in(data.room).emit('message', data.msg);
});
// listen to disconnect event
socket.on('disconnect', () => {
console.log('user disconnected');
// emit everyone a user disconnected
school.emit('message', 'user disconnected');
})
})