Skip to content

Instantly share code, notes, and snippets.

/* Ismael Celis 2010
Simplified WebSocket events dispatcher (no channels, no users)
// conn is an instance of WebSocket
var socket = new ServerEventDispatcher(conn);
// bind to server events
socket.bind('some_event', function(data){
alert(data.name + ' says: ' + data.message)
});