-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
34 lines (20 loc) · 872 Bytes
/
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
const express = require('express');
var socket = require('socket.io');
//app set up
const app = express();
const server = app.listen(4000, () => console.log('listening to requests on port 4000'));
//static files
app.use(express.static('public'));
//socket set up; fires the method socket and passes the set up server as a parameter.
const io = socket(server);
// this io.on method will handle what happens with the chat message on the server side. It listens to the particular socket where the message is being transferred, and re-emits that message to the rest of sockets connected to the server.
io.on('connection', (socket) => {
console.log('socket connection is made');
console.log(socket.id);
socket.on('chat', data => {
io.sockets.emit('chat', data);
});
socket.on('typing', data => {
socket.broadcast.emit('typing', data);
});
});