Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

enn-egg-mqtt

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

enn-egg-mqtt

egg plugin for enn-mqtt

  • 1.0.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

enn-egg-mqtt

mqtt client based on mqtt for egg framework for ENN company

Install

$ npm i enn-egg-mqtt --save

Configuration

Change ${app_root}/config/plugin.js to enable mqtt plugin:

exports.emqtt = {
  enable: true,
  package: 'enn-egg-mqtt',
};

Configure mqtt information in ${app_root}/config/config.default.js:

Single Client

config.emqtt = {
  client: {
    host: 'mqtt://xxx.xxx.xxx.xxx',
    password: 'xxxxx',
    username: 'xxxxx',
    clientId: 'xxxxx',
    options: {
      keepalive: 60,
      protocolId: 'MQTT',
      protocolVersion: 4,
      clean: true,
      reconnectPeriod: 1000,
      connectTimeout: 30 * 1000,
      rejectUnauthorized: false,
      ...
    },
    msgMiddleware: [ 'xxxx' ],
  },
}

Multi Clients

config.emqtt = {
  clients: {
    foo: {
      host: 'mqtt://xxx.xxx.xxx.xxx',
      password: 'xxxxx',
      username: 'xxxxx',
      clientId: 'xxxxx',
      options: {
        keepalive: 60,
        protocolId: 'MQTT',
        protocolVersion: 4,
        clean: true,
        reconnectPeriod: 1000,
        connectTimeout: 30 * 1000,
        rejectUnauthorized: false,
        ...
      },
      msgMiddleware: [ 'xxxx' ],
    },
    bar: {
      ...
    },
  }
}

See mqtt API Documentation for all available options.

Usage

In controller, you can use app.emqtt to get the mqtt instance, check mqtt to see how to use.

// app/router.js

module.exports = app => {
    const { router } = app;
    router.get('/', app.emqtt.controller.home.index);

    // mqtt_client,subscribe topic: a
    app.emqtt.route('a', app.mqtt.controller.home.index);
};

// app/mqtt/controller/home.js

module.exports = app => {
  return class HomeController extends app.Controller {
    async index() {
      /**
       * ctx.req = {
       *    topic: 'a',
       *    msg: 'xxxxxxxxxxxx',
       * }
       */ 
      // publish
      await this.app.emqtt.publish('topic1', 'msg123456', { qos: 0 });
    }
  };
};

// app/mqtt/middleware/msg2json.js
module.exports = () => {
  return async (ctx, next) => {
    try {
      console.log(
        ctx.helper.timeFormat(new Date()),
        `[MQTT-Topic: ${ctx.req.topic}] recieved`
      );
      ctx.req.message = JSON.parse(ctx.req.msg);
    } catch (err) {
      ctx.logger.error(err);
    }
    await next();
    console.log(
      ctx.helper.timeFormat(new Date()),
      `[MQTT-Topic: ${ctx.req.topic}] Response_Time: ${
        ctx.starttime ? Date.now() - ctx.starttime : 0
      }ms`
    );
  };
};

Multi Clients

If your Configure with multi clients, you can use app.emqtt.get(instanceName) to get the specific mqtt instance and use it like above.

Questions & Suggestions

Please open an issue here.

License

MIT

Keywords

FAQs

Package last updated on 11 Jul 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc