wormhole/example/example.html

33 lines
855 B
HTML
Raw Normal View History

2021-01-26 12:04:53 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wormhole test</title>
<script>
2021-02-04 16:01:14 +02:00
let theFunniestStringEver = '';
for (let i = 0; i < 1000000; i++) {
theFunniestStringEver += 'h';
}
2021-01-26 12:04:53 +02:00
// Create WebSocket connection.
const socket = new WebSocket('ws://localhost:8080/hello');
// Connection opened
socket.addEventListener('open', function (event) {
2021-02-04 16:01:14 +02:00
socket.send(theFunniestStringEver);
2021-01-26 12:04:53 +02:00
});
socket.addEventListener('error', console.error)
// Listen for messages
socket.addEventListener('message', function (event) {
console.log('Message from server ', event.data);
});
</script>
</head>
<body>
</body>
</html>