Skip to content

Instantly share code, notes, and snippets.

@notdol
Created January 30, 2013 00:50
Show Gist options
  • Save notdol/4669595 to your computer and use it in GitHub Desktop.
Save notdol/4669595 to your computer and use it in GitHub Desktop.
sockjs (client side)
<script src="http://cdn.sockjs.org/sockjs-0.3.min.js"></script>
<script>
var sock = new SockJS('http://mydomain.com/my_prefix');
sock.onopen = function() {
console.log('open');
};
sock.onmessage = function(e) {
console.log('message', e.data);
};
sock.onclose = function() {
console.log('close');
};
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment