mirror of
https://github.com/kataras/iris.git
synced 2025-01-24 03:01:03 +01:00
17 lines
421 B
HTML
17 lines
421 B
HTML
|
<!-- you can just put that to your favourite browser -->
|
||
|
<html>
|
||
|
|
||
|
<head>
|
||
|
<title>SSE (javascript side)</title>
|
||
|
|
||
|
<script type="text/javascript">
|
||
|
var client = new EventSource("http://localhost:8080")
|
||
|
client.onmessage = function (msg) {
|
||
|
console.log(msg)
|
||
|
}
|
||
|
</script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>Open the browser's console(F12) and watch for icoming event messages</h1>
|
||
|
</body>
|
||
|
</html>
|