socket io for each emit code example
Example 1: socket.io emit to all other clients
socket.emit('message', "this is a test");
io.emit('message', "this is a test");
socket.broadcast.emit('message', "this is a test");
socket.broadcast.to('game').emit('message', 'nice game');
io.in('game').emit('message', 'cool game');
socket.to('game').emit('message', 'enjoy the game');
io.of('myNamespace').emit('message', 'gg');
socket.broadcast.to(socketid).emit('message', 'for your eyes only');
for (var socketid in io.sockets.sockets) {}
OR
Object.keys(io.sockets.sockets).forEach((socketid) => {});
Example 2: socket emit to specific room using nodejs socket.io
io.to('room1').to('room2').to('room3').emit('some event');