File: sse.html

package info (click to toggle)
ruby-faye-websocket 0.11.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 236 kB
  • sloc: ruby: 1,209; makefile: 3
file content (38 lines) | stat: -rw-r--r-- 853 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!doctype html>
<html>
  <head>
    <meta http-equiv="Content-type" content="text/html; charset=utf-8">
    <title>EventSource test</title>
  </head>
  <body>

    <h1>EventSource test</h1>
    <ul></ul>

    <script type="text/javascript">
      var logger = document.getElementsByTagName('ul')[0],
          socket = new EventSource('/');

      var log = function(text) {
        logger.innerHTML += '<li>' + text + '</li>';
      };

      socket.onopen = function() {
        log('OPEN');
      };

      socket.onmessage = function(event) {
        log('MESSAGE: ' + event.data);
      };

      socket.addEventListener('update', function(event) {
        log('UPDATE(' + event.lastEventId + '): ' + event.data);
      });

      socket.onerror = function(event) {
        log('ERROR: ' + event.message);
      };
    </script>

  </body>
</html>