Advertisement
Guest User

Untitled

a guest
Mar 17th, 2022
317
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.  
  4. <head>
  5. <meta charset="UTF-8">
  6. <title>Document</title>
  7. <script src="https://unpkg.com/mqtt/dist/mqtt.min.js"></script>
  8.  
  9. <script>
  10. const client = mqtt.connect("ws://localhost:1884") // you add a ws:// url here
  11. client.subscribe("mqtt/demo")
  12.  
  13. client.on("message", function (topic, payload) {
  14. console.log("on.message: ", topic, payload)
  15. client.end()
  16. })
  17.  
  18. client.publish("mqtt/demo", "hello world!")
  19. </script>
  20. </head>
  21.  
  22. <body>
  23.  
  24. </body>
  25.  
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement