Skip to content

Instantly share code, notes, and snippets.

View jumperchen's full-sized avatar

Jumper Chen jumperchen

View GitHub Profile
@jumperchen
jumperchen / socket-cheatsheet.js
Created December 22, 2017 07:18 — 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
@jumperchen
jumperchen / README.md
Created April 29, 2016 01:56 — forked from digulla/README.md
Make ZK play nice with Fediz SSO