add demo script using websockets and asyncio

This commit is contained in:
2023-01-29 13:16:41 +01:00
parent 3ec9856ff8
commit d5f0b09fba
4 changed files with 51 additions and 5 deletions

View File

@ -3,7 +3,7 @@
<div id="data"></div>
<script src="https://code.jquery.com/jquery-3.6.3.min.js"></script>
<script>
let socket = new WebSocket("ws://localhost:5000/echo");
let socket = new WebSocket("ws://localhost:5000/");
socket.onopen = function(e) {
console.log("connection established");
socket.send("Hello World");