Created
October 28, 2016 11:59
-
-
Save oguzhaneren/5c07dd8e5de80568682c40af50b4e659 to your computer and use it in GitHub Desktop.
socket.io api methods
This file contains hidden or 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 | |
| socket.broadcast.to(socketid).emit('message', 'for your eyes only'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment