You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
391 B
HTML
19 lines
391 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>WebSocket Beispiel</title>
|
|
</head>
|
|
<body>
|
|
<h1>WebSocket Beispiel</h1>
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/4.3.1/socket.io.js"></script>
|
|
<script>
|
|
const socket = io();
|
|
|
|
socket.on('message', (data) => {
|
|
console.log('Nachricht empfangen:', data);
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|