You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// send to current request socket clientsocket.emit('message',"this is a test");// sending to all clients, include senderio.sockets.emit('message',"this is a test");// sending to all clients except sendersocket.broadcast.emit('message',"this is a test");// sending to all clients in 'game' room(channel) except sendersocket.broadcast.to('game').emit('message','nice game');// sending to all clients in 'game' room(channel), include senderio.sockets.in('game').emit('message','cool game');// sending to individual socketidio.sockets.socket(socketid).emit('message','for your eyes only');