pixeldike 0.1.0

pixel drawing game for programmers inspired by reddits r/place
Documentation
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>WebSocket Test Page</title>
</head>
<body>
    <script>
        function ws_connect() {
            let ws = new WebSocket("ws://localhost:1235");
            ws.addEventListener("open", () => console.info("WebSocket connection was successfully established"));
            ws.addEventListener("close", () => console.warn("WebSocket connection was closed"));
            ws.addEventListener("error", (e) => console.error("WebSocket connection error", e));
            ws.addEventListener("message", (msg) => console.info("Got WebSocket message:", msg.data));
            return ws;
        }
    </script>
</body>
</html>