| <html> | |
| <head> | |
| <title>Display</title> | |
| </head> | |
| <body> | |
| <h1> | |
| Display text | |
| </h1> | |
| <script> | |
| window.onload = () => { | |
| const eventSource = new EventSource('http://localhost:8343/test'); | |
| evtSource.onmessage = (e) => { | |
| console.log(e.data); | |
| }; | |
| } | |
| </script> | |
| </body> | |
| </html> | |