<!-- ./client/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>Document</title>
</head>

<body>
    <button onClick="sendMsg()">Hit Me</button>

    <script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/4.1.2/socket.io.js"></script>
    <script>
        const socket = io("http://localhost:3000");
        // listen for new messages
        socket.on("message", function (data) {
            console.log(data);
        });
        function sendMsg() {
            socket.emit("message", "HELLO WORLD");
        }
    </script>
</body>

</html>