React native – Expo Typescript connect to MQTT Broker
I'm trying to connect to MQTT broker. I uses mqtt and here is my code: // the MQTT_URL is just a sample structure const MQTT_URL = 'mqtt://sample-mqtt.com.ph'; const MQTT_OPTIONS = { clientId: 'mqttjs_' + Math.random().toString(16).substr(2, 8), clean: true } export…