mirror of
https://github.com/rwf2/Rocket.git
synced 2025-02-15 05:02:16 +00:00
23 lines
551 B
HTML
23 lines
551 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width">
|
|
<title>Rocket SSE Example</title>
|
|
</head>
|
|
<body>
|
|
<h1>Streaming...</h1>
|
|
<div id="spong">nothing yet</div>
|
|
</body>
|
|
<script charset="utf-8">
|
|
status_node = document.getElementById('spong');
|
|
status_node.innerHTML = 'loaded! nothing yet.';
|
|
|
|
es = new EventSource("updates");
|
|
es.onmessage = function(event) {
|
|
console.log(event);
|
|
status_node.innerHTML = event.data;
|
|
};
|
|
</script>
|
|
</html>
|