-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (27 loc) · 835 Bytes
/
index.html
File metadata and controls
29 lines (27 loc) · 835 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Server-Sent Events</title>
</head>
<body>
<div id="price-block"></div>
<form>
<input id="stop" type="button" value="Stop stream" />
</form>
<script>
const url = "http://127.0.0.1:9000/stream";
const eventSource = new EventSource(url);
const priceElem = document.getElementById("price-block");
const stopBtn = document.getElementById("stop");
eventSource.onmessage = (message) => {
priceElem.innerText = `${message.data}`;
};
stopBtn.addEventListener("click", () => {
eventSource.close();
});
</script>
</body>
</html>