apeman-app-mqttdeprecated

apeman app for MQTT broker server.

Usage no npm install needed!

<script type="module">
  import apemanAppMqtt from 'https://cdn.skypack.dev/apeman-app-mqtt';
</script>

README

apeman-app-mqtt

Build Status Code Climate Code Coverage npm Version JS Standard

apeman app for MQTT broker server.

Installation

$ npm install apeman-app-mqtt --save

Usage

  1. Define an app within Apemanfile.js
  2. Call the app via apeman app command.

Apemanfile.js

/** This is an example Apemanfile to use apeman-app-mqtt */

'use strict'

module.exports = {
  $pkg: { /* ... */ },
  $apps: {
    // Define your own app.
    'my-app-01': {
      // Map url and handlers.
      '/mqtt': [
        require('apeman-app-mqtt')({
          port: 9001
        })
      ]
    }
  }
}

Then,

$ apeman app my-app-01 -p 3000

Signature

apemanAppMqtt(options) -> function

apeman app for MQTT broker server.

Args
Name Type Default Description
options object Optional settings.
options.backend object Mosca backend option.

License

This software is released under the MIT License.

Links