deno.land / x / alosaur@v1.1.1 / examples / sse / www / index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>ws chat example</title>
<link rel="stylesheet" href="index.css"></link>
</head>
<body>
<script>
const eventSource = new EventSource("http://localhost:8000/sse");
eventSource.onopen = function(e) {
console.log("OPEN", e);
};
eventSource.onmessage = function(e) {
console.log("Message: " + e.data);
};
</script>
</body>
</html>
Version Info