rrevo's picture
changges
f0af7d8
raw
history blame
356 Bytes
<!DOCTYPE html>
<html>
<head>
<title>Display</title>
</head>
<body>
<h1>
Display text
</h1>
<script>
window.onload = () => {
const eventSource = new EventSource('http://localhost:8343/test');
evtSource.onmessage = (e) => {
console.log(e.data);
};
}
</script>
</body>
</html>