how to check socket.io send data to emiiter code example
Example: 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) => {});