Skip to content

Instantly share code, notes, and snippets.

View chirag14252's full-sized avatar

Chirag Bhardwaj chirag14252

View GitHub Profile
@chirag14252
chirag14252 / socket-cheatsheet.js
Created October 21, 2023 12:45 — forked from alexpchin/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