Skip to content

Instantly share code, notes, and snippets.

@Abbe98
Created February 10, 2017 13:41
Show Gist options
  • Select an option

  • Save Abbe98/0541e5fe99e1f78cbcef746c1b806059 to your computer and use it in GitHub Desktop.

Select an option

Save Abbe98/0541e5fe99e1f78cbcef746c1b806059 to your computer and use it in GitHub Desktop.
Example of the stream.wikimedia.org API
var url = 'https://stream.wikimedia.org/v2/stream/recentchange';
var eventSource = new EventSource(url);
eventSource.onmessage = function(event) {
var data = JSON.parse(event.data);
if (data.server_name == 'sv.wikipedia.org') {
console.log(event)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment