index.html

Format: HTML
 ( View Raw)
Date: Thu, 06 Jul 2023 at 17:44:18

<!DOCTYPE html>
<html>

<head>
    <title>MAC Address Stream</title>
</head>

<body>
    <h1>MAC Address Stream</h1>
    <div id="content"></div>

    <script>
        const content = document.getElementById('content');
        const source = new EventSource('/stream');

        source.onmessage = function (event) {
            const p = document.createElement('p');
            p.innerText = event.data;
            content.appendChild(p);
        };
    </script>
</body>

</html>