Skip to content

Instantly share code, notes, and snippets.

@edsu
Created January 21, 2014 14:53
Show Gist options
  • Save edsu/8541522 to your computer and use it in GitHub Desktop.
Save edsu/8541522 to your computer and use it in GitHub Desktop.
paste this in your browser's console window and smoke it :-)
var w = new EventSource("https://wikipedia-edits.herokuapp.com/sse");
w.onmessage = function(event) {
change = JSON.parse(event.data);
console.log(change);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment