MqttModule.js 147 Bytes Raw Blame History Permalink 1 2 3 4 5 6 const mqtt = require('mqtt'); exports.mqttOn = async(hosting, topic) => { const client = mqtt.connect(hosting); client.subscribe(topic); }