Skip to content

Instantly share code, notes, and snippets.

View ShubhankitSudhakar's full-sized avatar
🎯
Focusing

ShubhankitSudhakar

🎯
Focusing
View GitHub Profile
@ShubhankitSudhakar
ShubhankitSudhakar / socket-cheatsheet.js
Created May 15, 2021 14:06 — 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