“Mqtt js react-nativo” Código de respuesta

Mqtt js react-nativo

var mqtt = require('@taoqf/react-native-mqtt')
var client  = mqtt.connect('mqtt://test.mosquitto.org')
 
client.on('connect', function () {
  client.subscribe('presence', function (err) {
    if (!err) {
      client.publish('presence', 'Hello mqtt')
    }
  })
})
 
client.on('message', function (topic, message) {
  // message is Buffer
  console.log(message.toString())
  client.end()
})
Faithful Fox

Mqtt js react-nativo

npm install @taoqf/react-native-mqtt --save
Faithful Fox

Respuestas similares a “Mqtt js react-nativo”

Preguntas similares a “Mqtt js react-nativo”

Más respuestas relacionadas con “Mqtt js react-nativo” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código