| 12345678910111213141516171819202122232425 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>ws client</title>
- </head>
- <body>
- <script type="text/javascript">
- let ws = new WebSocket('ws://localhost:8001')
- ws.onopen = () => {
- console.log('connection opened')
- }
- ws.onclose = () => {
- console.log('connection closed')
- }
- ws.onmessage = (ev) => {
- console.log('received:' + ev)
- }
- ws.send(JSON.stringify({a: 1, b: 2}))
- </script>
- </body>
- </html>
|