EpicEric / pony-mqtt

:horse: MQTT client in Pony
https://epiceric.github.io/pony-mqtt-docs/mqtt--index/
MIT License
6 stars 1 forks source link
mqtt-client pony-language ponylang

Pony-MQTT

A notify-based implementation of an MQTT client written in the Pony language.

Status

CircleCI

Pony-MQTT is in alpha, which means breaking changes are expected. Please read CONTRIBUTING.md if you wish to lend a hand.

Available features

Installation

[
  ...,
  { 
    "type": "github",
    "repo": "epiceric/pony-mqtt"
  }
]

Installation with net-ssl

Follow the installations of the package, and add the following to your bundle.json:

[
  ...,
  { 
    "type": "github",
    "repo": "epiceric/pony-mqtt"
  },
  { 
    "type": "github",
    "repo": "ponylang/net-ssl"
  }
]

See the TLS example to configure your MQTTConnection appropriately.

Usage

Please refer to the official documentation hosted on GitHub Pages.