1234567891011121314151617181920212223242526 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>Hello AMP WebSocket</title>
- <meta charset="UTF-8">
- <script src="/node_modules/jquery/dist/jquery.min.js"></script>
- <script src="/node_modules/sockjs-client/dist/sockjs.min.js"></script>
- <script src="/node_modules/stomp-websocket/lib/stomp.min.js"></script>
- <script src="/amp.js"></script>
- <style>
-
- h1, h3 {
- color: #777;
- font-family:Arial, Helvetica, sans-serif
- }
-
- </style>
- </head>
- <body>
- <h1>Websocket - targeting AMP running on http://localhost:8081/amp/websocket</h1>
- <h3>
- Check the console to see messages after saving operators, games, chains and outlets.
- </h3>
- </body>
- </html>
|