Skip to content

Instantly share code, notes, and snippets.

View ed1nh0's full-sized avatar
👶
Baby onboard

Edson Simão Jr. ed1nh0

👶
Baby onboard
  • zeus agrotech
  • Uberlandia, Brazil
  • 13:30 (UTC -03:00)
  • X @ed1nh0
  • LinkedIn in/ed1nh0
View GitHub Profile
@alexpchin
alexpchin / socket-cheatsheet.js
Created December 15, 2015 16:58
A quick cheatsheet for socket.io
// 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