-
-
Save fadsel/3fd36b457986a485aaa4986d2715250b to your computer and use it in GitHub Desktop.
A quick cheatsheet for socket.io
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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 | |
socket.broadcast.to('game').emit('message', 'nice game'); | |
// sending to all clients in 'game' room(channel), include sender | |
io.in('game').emit('message', 'cool game'); | |
// sending to sender client, only if they are in 'game' room(channel) | |
socket.to('game').emit('message', 'enjoy the game'); | |
// sending to all clients in namespace 'myNamespace', include sender | |
io.of('myNamespace').emit('message', 'gg'); | |
// sending to individual socketid (server-side) | |
socket.broadcast.to(socketid).emit('message', 'for your eyes only'); | |
// join to subscribe the socket to a given channel (server-side): | |
socket.join('some room'); | |
// then simply use to or in (they are the same) when broadcasting or emitting (server-side) | |
io.to('some room').emit('some event'): | |
// leave to unsubscribe the socket to a given channel (server-side) | |
socket.leave('some room'); | |
// Emit data to a specific user | |
io.sockets.connected[userSocketId].emit('socketName', 'some text'); | |
/*http://blog.npmjs.org/post/118810260230/building-a-simple-command-line-tool-with-npm */ | |
/* https://saficloud.com , Go Play Sticky Bubble on Google Play */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment