Advertisement
Guest User

Untitled

a guest
May 20th, 2019
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. <script type="text/javascript">
  7.  
  8. const url = "ws://localhost:9000/ageMe";
  9. const socket = new WebSocket(url);
  10.  
  11. socket.onopen = () => {
  12. console.log("Websocket opened");
  13. socket.send(JSON.stringify({name: "Erwin", age: 26}))
  14. };
  15.  
  16. socket.onmessage = (event) => {
  17. console.log(event.data)
  18. }
  19.  
  20. </script>
  21. </head>
  22. <body>
  23.  
  24. </body>
  25. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement