Introvertuous / react-native-mqtt

Mqtt client for react native.
MIT License
158 stars 30 forks source link

Example please #27

Open RahulPillai22 opened 4 years ago

RahulPillai22 commented 4 years ago

I have tried including this in my project in expo but I just can't get it to work, I have tried it with cloudmqtt, hive and eclipse online free brokers but its not working. Can someone link a project they have made in react native using this library for MQTT. That will give me much more clarity thanks.

KrifaYounes commented 4 years ago

me too have ou find any example to publish data ?

Pofke commented 3 years ago

For publishing: let message = new Paho.MQTT.Message("Hello"); message.destinationName = "react_native/World"; client.send(message);