Skip to content

Instantly share code, notes, and snippets.

View naveen0-0's full-sized avatar
🏠
Working from home

naveen naveen0-0

🏠
Working from home
View GitHub Profile
@naveen0-0
naveen0-0 / socket-cheatsheet.js
Created December 24, 2021 10:19 — 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