npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

mqtt-relay

v0.0.9

Published

A flexible MQTT relay module for forwarding messages between brokers.

Downloads

490

Readme

mqtt-relay

mqtt-relay is a flexible MQTT relay module that forwards messages from one broker to another. It allows you to selectively map and transform topics, enabling you to set custom output topics while preserving subtopic structures. This functionality is particularly useful in complex setups where specific MQTT topics need to be routed or modified between brokers.

Installation

Install the mqtt-relay package:

npm install mqtt-relay

Usage

Basic Setup

After installation, set up a configuration file to specify the MQTT brokers, relay options, and topic mappings. You can find a sample configuration file in node_modules/mqtt-relay/relay-config.sample.yaml. Copy it to your project root and customize it:

cp node_modules/mqtt-relay/relay-config.sample.yaml ./relay-config.yaml

To run the relay with this configuration:

node mqtt-relay.js relay-config.yaml

You can run multiple instances with different configurations. For each instance, specify the config file as a parameter:

node mqtt-relay.js another-config.yaml

Using PM2

To manage instances of mqtt-relay that need to run unattended, you can use PM2. Set each instance with a unique name:

pm2 --name "mqtt-relay-instance" start mqtt-relay.js -- relay-config.yaml

Configuration

Config Structure

The configuration file allows you to define both input and output brokers, publishing options, and detailed topic mappings for flexible topic transformations.

Example Configuration

name: mqtt-relay-example
brokerInUrl: "mqtt://input-broker.example.com:1883"
brokerInOptions:
  username: "inputUser"
  password: "inputPassword"

brokerOutUrl: "mqtt://output-broker.example.com:1883"
brokerOutOptions:
  username: "outputUser"
  password: "outputPassword"

publishOptions:
  retain: true
  qos: 1

debug: false

topicMap:
  - in: "device123/sensor/#"
    out: "home/sensors"
  - in: "monitoring/temperature"
    out: "metrics/temperature"
  - in: "alerts/#"
    out: "notifications/alerts"
  - in: "system/status"
    out: "status/system"

topicMap Configuration

topicMap specifies how each input topic (in) is transformed before it is published to the output broker. This allows you to relay topics directly or modify them based on custom mappings.

Types of Mappings

  1. Prefix Match with Dynamic Subtopics:

    • If the in topic ends with /#, it will match the topic prefix and relay any additional subtopic structure.
    • Example:
      - in: "device123/sensor/#"
        out: "home/sensors"
      • Incoming topic: device123/sensor/temperature/reading
      • Published topic: home/sensors/temperature/reading
  2. Exact Match:

    • If the in topic does not end with /#, it will only match the specific topic exactly as written.
    • Example:
      - in: "monitoring/temperature"
        out: "metrics/temperature"
      • Incoming topic: monitoring/temperature
      • Published topic: metrics/temperature
  3. Pass-Through (No out Specified):

    • If no out field is provided, the input topic will be passed through unmodified.
    • Example:
      - in: "alerts/#"
      • Incoming topic: alerts/high
      • Published topic: alerts/high

Constructing topicMap

To construct the topicMap:

  • in: Specify the incoming topic to match. Use + to match one level and /# at the end to match all remaining subtopics.
  • out (optional): Specify the output topic prefix. If /# is used in in, the remaining subtopics will be appended to out.

Examples:

  1. Dynamic Mapping with Prefix:

    - in: "device123/sensor/#"
      out: "home/sensors"
    • Matches all topics under device123/sensor and publishes them under home/sensors with the original subtopics appended.
  2. Exact Mapping:

    - in: "monitoring/temperature"
      out: "metrics/temperature"
    • Only monitoring/temperature is matched and relayed as metrics/temperature with no appended subtopics.
  3. Pass-Through:

    - in: "alerts/#"
    • Passes through all topics under alerts without modification.

Additional Options

  • brokerInUrl: URL of the input broker.
  • brokerInOptions: Credentials for the input broker.
  • brokerOutUrl: URL of the output broker.
  • brokerOutOptions: Credentials for the output broker.
  • publishOptions:
    • retain: Whether to retain messages on the output broker.
    • qos: QoS level for the output broker (0, 1, or 2).
  • debug: Set to true to enable detailed logging.

License

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