Skip to content

Instantly share code, notes, and snippets.

View jsmirandaiii's full-sized avatar
🏠
Working from home

Jose Miranda III jsmirandaiii

🏠
Working from home
  • Gamecaster Pte. Ltd.
  • Philippines
View GitHub Profile
@jsmirandaiii
jsmirandaiii / socket-cheatsheet.js
Created July 26, 2019 05:12 — forked from jomi-xsplit/socket-cheatsheet.js
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