UNPKG

e-lado

Version:

[![CircleCI](https://circleci.com/gh/sharetribe/sharetribe/tree/master.svg?style=svg)](https://circleci.com/gh/sharetribe/sharetribe/tree/master) [![Dependency Status](https://gemnasium.com/sharetribe/sharetribe.png)](https://gemnasium.com/sharetribe/shar

10 lines (8 loc) 224 B
var EventSource = require('./lib/eventsource'); var es = new EventSource('http://demo-eventsource.rhcloud.com/'); es.onmessage = function(e) { console.log(e.data); }; es.onerror = function() { console.log('ERROR!'); };