Broadcasting
Send an event to everyone:
// this will emit the event to all connected sockets
io.emit('hello', 'world');
Send to everyone except the emitting socket:
io.on('connection', (socket) => {
socket.broadcast.emit('hi');
});
Send an event to everyone:
// this will emit the event to all connected sockets
io.emit('hello', 'world');
Send to everyone except the emitting socket:
io.on('connection', (socket) => {
socket.broadcast.emit('hi');
});