socket io socket send to own client code example
Example 1: How to send a message to a particular client with socket.io
io.sockets.in('[email protected]').emit('new_msg', {msg: 'hello'});
Example 2: socket io emit from socket instance or server
socket.emit('message', "this is a test");
socket.broadcast.emit('message', "this is a test");
socket.broadcast.to('game').emit('message', 'nice game');
socket.to('game').emit('message', 'enjoy the game');
socket.broadcast.to(socketid).emit('message', 'for your eyes only');
io.emit('message', "this is a test");
io.in('game').emit('message', 'cool game');
io.of('myNamespace').emit('message', 'gg');
socket.emit();
socket.broadcast.emit();
socket.on();
io.sockets.socket();
io.sockets.emit();
io.sockets.on() ;