All Downloads are FREE. Search and download functionalities are using the official Maven repository.

node_modules.mqtt.examples.client.simple-subscribe.js Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
'use strict'

var mqtt = require('../..')
var client = mqtt.connect()

client.subscribe('presence')
client.on('message', function (topic, message) {
  console.log(message)
})




© 2015 - 2025 Weber Informatics LLC | Privacy Policy