Skip to content

Instantly share code, notes, and snippets.

View ssoemoe's full-sized avatar
🖐️
Hello there

Shane Khant Soe Moe ssoemoe

🖐️
Hello there
View GitHub Profile
@ssoemoe
ssoemoe / socket-cheatsheet.js
Last active January 8, 2020 15:24 — forked from alexpchin/socket-cheatsheet.js
A quick cheatsheet for socket.io
// sending to the client
socket.emit('hello', 'can you hear me?', 1, 2, 'abc');
// sending to all clients except sender
socket.broadcast.emit('broadcast', 'hello friends!');
// sending to all clients in 'game' room except sender
socket.to('game').emit('nice game', "let's play a game");
// sending to all clients in 'game1' and/or in 'game2' room, except sender