Skip to content

Instantly share code, notes, and snippets.

@matheus-santos
Last active May 1, 2019 19:23
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save matheus-santos/11d1ec092ffae7469321 to your computer and use it in GitHub Desktop.
Save matheus-santos/11d1ec092ffae7469321 to your computer and use it in GitHub Desktop.
SocketIO cheat sheet to emit messages through sockets
// SocketIO cheat sheet
// SocketIO is a library that makes websockets communications easier.
// Page: http://socket.io/
// ref: http://stackoverflow.com/a/10099325
// send to current request socket client
socket.emit('message', "this is a test");
// sending to all clients, include sender
io.sockets.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.sockets.in('game').emit('message', 'cool game');
// sending to individual socketid
io.sockets.socket(socketid).emit('message', 'for your eyes only');
@piavgh
Copy link

piavgh commented Sep 22, 2018

In the most recent version of socket.io, I think they changed this:

// sending to individual socketid
io.sockets.socket(socketid).emit('message', 'for your eyes only');

to this

// sending to individual socketid (private message)
io.to(`${socketId}`).emit('hey', 'I just met you');

Emit cheatsheet

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment