mirror of
https://github.com/Noratrieb/viewstrap.git
synced 2026-01-14 16:45:10 +01:00
24 lines
578 B
HTML
24 lines
578 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Document</title>
|
|
</head>
|
|
<body>
|
|
<button onclick="startWs()">build me a compiler</button>
|
|
|
|
<script>
|
|
function startWs() {
|
|
console.log("starting ws");
|
|
|
|
const ws = new WebSocket("ws://localhost:3000/ws");
|
|
|
|
ws.addEventListener("open", () => {
|
|
ws.send("uwu!");
|
|
});
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|