mirror of
https://github.com/wu736139669/ASHEBShop-h5.git
synced 2026-08-05 05:55:36 +00:00
10 lines
224 B
JavaScript
10 lines
224 B
JavaScript
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!');
|
|
};
|