This repository has been archived on 2024-04-29. You can view files and clone it, but cannot push or open issues or pull requests.
node-fftcg/backend/tmpfront/index.html

20 lines
474 B
HTML

<!DOCTYPE html>
<html lang="de" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
Hello World
<script type="text/javascript">
const host = location.origin.replace(/^http/, 'ws')
const ws = new WebSocket(host)
ws.onmessage = msg => console.log(msg.data)
ws.onopen = () => {
console.log('Hai')
ws.send('Ping') // Send the message 'Ping' to the server
}
</script>
</body>
</html>