Skip to content

Instantly share code, notes, and snippets.

@milingo
Created June 15, 2017 14:50
Show Gist options
  • Save milingo/238a7247baafbd73bb18f3f5342c0cc1 to your computer and use it in GitHub Desktop.
Save milingo/238a7247baafbd73bb18f3f5342c0cc1 to your computer and use it in GitHub Desktop.
<script>
var source = new EventSource('/live');
source.onmessage = function(event) {
console.log('Incoming date:' + event.data);
};
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment