Skip to content

Instantly share code, notes, and snippets.

@questsin
Created February 20, 2019 15:08
Show Gist options
  • Save questsin/b15febf44eb39bf687b037e94467b4b8 to your computer and use it in GitHub Desktop.
Save questsin/b15febf44eb39bf687b037e94467b4b8 to your computer and use it in GitHub Desktop.
var mqtt = require('mqtt')
var client = mqtt.connect('mqtt://test.mosquitto.org')
client.on('connect', function () {
client.subscribe('presence')
client.publish('presence', 'Hello mqtt')
})
client.on('message', function (topic, message) {
// message is Buffer
console.log(topic);
console.log(message.toString())
client.end()
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment