mirror of
https://github.com/c-cube/tiny_httpd.git
synced 2025-12-05 19:00:32 -05:00
21 lines
469 B
HTML
21 lines
469 B
HTML
|
|
<!-- to be used with sse_server -p 8087 -->
|
|
|
|
<html>
|
|
<head>
|
|
<script src="https://unpkg.com/htmx.org@1.7.0"></script>
|
|
|
|
<script>
|
|
htmx.createEventSource = (url) => {
|
|
return new EventSource(url, {withCredentials:false});
|
|
}
|
|
|
|
</script>
|
|
|
|
</head>
|
|
<body hx-trigger="onload" hx-sse="connect:http://localhost:8087/clock">
|
|
<p>time:</p>
|
|
<div hx-sse="swap:tick" hx-swap="innerHtml"> </div>
|
|
<!-- <div hx-trigger="sse:tick" hx-get="/news"></div> -->
|
|
</body>
|
|
</html>
|