Skip to content

Instantly share code, notes, and snippets.

@d33pfri3d
Created June 8, 2012 13:15
Show Gist options
  • Save d33pfri3d/2895550 to your computer and use it in GitHub Desktop.
Save d33pfri3d/2895550 to your computer and use it in GitHub Desktop.
EventSource
var es = new EventSource('/console');
es.onmessage = function (event) {
var data = JSON.parse(event.data);
execute(data.command);
};
//custom message type
es.addEventListener('reload', function() {
reloadData();
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment