We are looking at using MQTT as the messaging protocol on a new device we're building. We'd also like a web interface for the device. Does anyone know if you can implement a browser client app (without additional plugins) that talks MQTT?
相关问题
- Why use MQTT Node.JS library?
- AWS store MQTT message to DynamoDB
- JavaScript client for MQTT not using WebSockets
- Paho MQTT Python Client: No exceptions thrown, jus
- mqtt on Laravel with PHP
相关文章
- Connecting Unity3d Android application to ActiveMQ
- Integrating MQTT with GCP using IOT adapter and go
- How can i connect a Java mqtt client with username
- How to build a system to handle MQTT broker and Dj
- How to send a jms message to activeMQ and decode i
- golang mqtt publish and subscribe
- MQTT over websocket in python
- MQTT-Client-Framework stay running at background
Why not
nodejs
+socket.io
? They come with all gadgets included (webscokets, pub/sub, webserver,mqtt broker...). SocketCluster is another good starting point.We've had good experience using WSS, the WebSocket to TCP Gateway (for MQTT). It means running a separate process, but that does avoid having to change Apache's configuration. WSS also has support for TLS.