mirror of
https://github.com/kataras/iris.git
synced 2025-01-24 19:21:03 +01:00
11 lines
324 B
HTML
11 lines
324 B
HTML
|
<!-- the message's input -->
|
||
|
<input id="input" type="text" />
|
||
|
|
||
|
<!-- when clicked then a websocket event will be sent to the server, at this example we registered the 'chat' -->
|
||
|
<button id="sendBtn" disabled>Send</button>
|
||
|
|
||
|
<!-- the messages will be shown here -->
|
||
|
<pre id="output"></pre>
|
||
|
|
||
|
<script src="./bundle.js"></script>
|