Skip to content

Instantly share code, notes, and snippets.

@MikaelElkiaer
Last active December 18, 2016 14:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MikaelElkiaer/60ab0fc2ab8354e11d74d9d4cdf6f667 to your computer and use it in GitHub Desktop.
Save MikaelElkiaer/60ab0fc2ab8354e11d74d9d4cdf6f667 to your computer and use it in GitHub Desktop.
// Stolen from SO: http://stackoverflow.com/a/10099325/3376155
// sending to sender-client only
socket.emit('message', "this is a test");
// sending to all clients, include sender
io.emit('message', "this is a test");
// sending to all clients except sender
socket.broadcast.emit('message', "this is a test");
// sending to all clients in 'game' room(channel) except sender
socket.broadcast.to('game').emit('message', 'nice game');
// sending to all clients in 'game' room(channel), include sender
io.in('game').emit('message', 'cool game');
// sending to sender client, only if they are in 'game' room(channel)
socket.to('game').emit('message', 'enjoy the game');
// sending to all clients in namespace 'myNamespace', include sender
io.of('myNamespace').emit('message', 'gg');
// sending to individual socketid
socket.broadcast.to(socketid).emit('message', 'for your eyes only');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment