0.1.1 • Published 7 years ago

rx-mqtt v0.1.1

Weekly downloads
12
License
-
Repository
github
Last release
7 years ago

rx-mqtt

Reactive mqtt client based on mqtt and rx.

Build Status

Install

npm install --save rx-mqtt

Basic usage

const rxmqtt = require('rxmqtt');

const client = rxmqtt.connect('mqtt://localhost:1883');


// Subscribe to a topics messanges
client
	.topic('/test/a')
	.subscribe((msg) => console.log(msg));


// Publish a message to a topic
client
	.topic('/test/a')
	.publish('Hello World', { qos: 1, retain: false });



// Create an observer which sends messenges to topic `/test/b` with `qos:2` and `retain:true` if `onNext(msg)` is invoked.
let topicBObserver = client.topic('/test/b').createObserver({ qos: 2, retain: true });


// Example how to use `topicBObserver`
client
	.topic('/test/c')
	.observer
	.map((msg) => parseInt(msg) >= 50 ? 'on' : 'off')
	.subscribe(topicBObserver);

API


RxMqtt

rxmqtt.connect(uri, options)

Returns an instance of Client.

Client

client.topic(id)

Returns an instance of Topic.

  • id - (String) the path of the topic to publish/subscribe to

Topic

topic.subscribe(observer)

  • observer - (Function, RxObserver)

topic.publish(msg, options)

  • msg - (String, Buffer)
  • options - (Object)

topic.createObserver(options)

  • options - (Object)

Running tests

  • npm install
  • npm test

Built with

  • rx Library for composing asynchronous and event-based operations in JavaScript
  • mqtt A library for the MQTT protocol

Versioning

We use SemVer. For available versions of this project see releases.

Author

Christian Blaschke - @platdesign

License

This project is licensed under the MIT License - see the LICENSE file for details.

0.1.1

7 years ago

0.1.0

7 years ago