50 lines
697 B
HTML
50 lines
697 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>WebSocker Client</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<button onclick="contactServer">Click Here</button>
|
|
|
|
</body>
|
|
|
|
<script>
|
|
|
|
const socket = new WebSocket('ws://localhost:8000');
|
|
|
|
socket.addEventListener('open', function (event) {
|
|
|
|
socket.send('Connection Established');
|
|
|
|
});
|
|
|
|
|
|
|
|
socket.addEventListener('message', function (event) {
|
|
|
|
console.log(event.data);
|
|
|
|
});
|
|
|
|
const contactServer = () => {
|
|
|
|
socket.send("Initialize");
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</html>
|