13 lines
338 B
HTML
13 lines
338 B
HTML
|
<!DOCTYPE html>
|
||
|
<meta charset="utf-8" />
|
||
|
<pre></pre>
|
||
|
<script>
|
||
|
const el = document.querySelector("pre");
|
||
|
const id = location.hash.slice(1);
|
||
|
const ws = new WebSocket("ws://localhost:8080/logs/socket/" + id);
|
||
|
window.ws = ws;
|
||
|
ws.addEventListener("message", async (event) => {
|
||
|
el.append(await event.data.text());
|
||
|
});
|
||
|
</script>
|