Skip to content

Latest commit

History

70 Commits

Folders and files

NameName
Last commit message
Last commit date

Repository files navigation

EventSource polyfill - http://www.w3.org/TR/eventsource/

Browser support:

IE 8+, Firefox 3.5+, Chrome 7+, Safari 5+, Opera 12+

Advantages:

  • Simple server-side code - you don't need any library.
  • Based on latest specification of EventSource
  • Polyfill is independent from document methods, so you can use it in a Web Worker's
  • Cross-domain requests support (anonymous mode)

Server-side requirements:

Specification:

Other EventSource polyfills:

Native EventSource+CORS support:

EXAMPLE

server-side (node.js)

varhttp=require('http');varfs=require('fs');http.createServer(function(req,res){vart=null;if(req.url.indexOf('/events')===0){res.writeHead(200,{'Content-Type': 'text/event-stream','Cache-Control': 'no-cache','Connection': 'keep-alive','Access-Control-Allow-Origin': '*'});res.write(':'+Array(2049).join(' ')+'\n');//2kb padding for IEres.write('data: '+Date()+'\n\n');t=setInterval(function(){res.write('data: '+Date()+'\n\n');},1000);res.socket.on('close',function(){clearInterval(t);});}else{if(req.url==='/index.html'||req.url==='/eventsource.js'){res.writeHead(200,{'Content-Type': req.url==='/index.html' ? 'text/html' : 'text/javascript'});res.write(fs.readFileSync(__dirname+req.url));}res.end();}}).listen(8081);//! port :8081

or use PHP (see php/events.php)

<?header('Access-Control-Allow-Origin: *');
header('Content-Type: text/event-stream');
header('Cache-Control: no-cache');
// prevent bufferringif (function_exists('apache_setenv')) {
@apache_setenv('no-gzip', 1);
}
@ini_set('zlib.output_compression', 0);
@ini_set('implicit_flush', 1);
for ($i = 0; $i < ob_get_level(); $i++) { ob_end_flush(); }
ob_implicit_flush(1);
// getting last-event-id from POST or from http headers$postData = @file_get_contents('php://input');
parse_str($postData, $tmp);
if (isset($tmp['Last-Event-ID'])) {
$lastEventId = $tmp['Last-Event-ID'];
} else {
$lastEventId = @$_SERVER["HTTP_LAST_EVENT_ID"];
}
// 2kb padding for IEecho':' . str_repeat('', 2048) . "\n";
// event-streamfor ($i = intval($lastEventId) + 1; $i < 100; $i++) {
echo"id: $i\n";
echo"data: $i;\n\n";
sleep(1);
}
?>

index.html (php/index.html):

<!DOCTYPE html><html><head><metacharset="utf-8" /><title>EventSource example</title><metahttp-equiv="X-UA-Compatible" content="IE=edge"><scriptsrc="../eventsource.js"></script><script>vares=newEventSource('events.php');es.addEventListener('open',function(event){vardiv=document.createElement('div');div.innerHTML='opened: '+es.url;document.body.appendChild(div);},false);es.addEventListener('message',function(event){document.body.appendChild(document.createTextNode(event.data));},false);es.addEventListener('error',function(event){vardiv=document.createElement('div');div.innerHTML='closed';document.body.appendChild(div);},false);</script></head><body></body></html>

About

javascript EventSource polyfill for http://www.w3.org/TR/eventsource/ , see working demo:

Resources

Stars

1 star

Watchers

1 watching

Forks

Releases

Packages

Contributors