mirror of
https://github.com/kataras/iris.git
synced 2025-12-22 12:27:02 +00:00
reorganization of _examples and add some new examples such as iris+groupcache+mysql+docker
Former-commit-id: ed635ee95de7160cde11eaabc0c1dcb0e460a620
This commit is contained in:
17
_examples/response-writer/sse/optional.sse.mini.js.html
Normal file
17
_examples/response-writer/sse/optional.sse.mini.js.html
Normal file
@@ -0,0 +1,17 @@
|
||||
<!-- 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/events")
|
||||
client.onmessage = function (evt) {
|
||||
console.log(evt)
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Open the browser's console(F12) and watch for incoming event messages</h1>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user