Skip to content

Instantly share code, notes, and snippets.

@bharathvaj-ganesan
Created July 29, 2018 16:00
Show Gist options
  • Save bharathvaj-ganesan/4b8df2370e068c06097a18b4d34afe10 to your computer and use it in GitHub Desktop.
Save bharathvaj-ganesan/4b8df2370e068c06097a18b4d34afe10 to your computer and use it in GitHub Desktop.
const evtSource = new EventSource('/events');
evtSource.addEventListener('event', function(evt) {
const data = JSON.parse(evt.data);
// Use data here
},false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment