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 🙏

© 2026 – Pkg Stats / Ryan Hefner

signalk-mqtt-openhasp

v0.0.3

Published

SignalK Node server plugin that acts as a bridge between SignalK data and OpenHASP using MQTT

Readme

SignalK MQTT OpenHASP Bridge

This SignalK plugin acts as a bridge between SignalK data and OpenHASP displays using MQTT. It allows you to visualize your boat's data on OpenHASP-compatible displays by automatically publishing SignalK values to MQTT topics that OpenHASP understands.

Features

  • Connects SignalK data to OpenHASP displays via MQTT
  • Supports multiple OpenHASP nodes/displays
  • Configurable update intervals for each data point
  • Allows custom page configurations in JSONL format
  • Secure MQTT connection support with optional certificate validation

Installation

  1. Install this plugin through the SignalK app store or manually:
    npm install signalk-mqtt-openhasp

Configuration

The plugin requires the following configuration:

MQTT Settings

  • MQTT Broker Address: URL of your MQTT broker in the format mqtt://user:pass@ip_or_host:1883
  • Reject Unauthorized Certificates: Enable/disable validation of SSL certificates (default: true)
  • Keepalive TTL: Time in seconds between keepalive messages (default: 60)

Node Configuration

For each OpenHASP display you want to connect, configure:

  • Node Name: The name of your OpenHASP device (default: 'plate')
  • Pages: OpenHASP page configuration in JSONL format
  • Paths: Array of SignalK paths to monitor and send to the display
    • Path: The SignalK path to monitor (e.g., 'electrical.batteries.1.voltage')
    • Keyword: The OpenHASP object to update (e.g., 'p5b51.val')
    • Interval: Minimum time in seconds between updates

Example configuration:

{
  "nodes": [
    {
      "nodename": "helm",
      "pages": "...",
      "paths": [
        {
          "path": "electrical.batteries.1.voltage",
          "keyword": "p5b51.val",
          "interval": 2
        }
      ]
    }
  ]
}

MQTT Topics

The plugin publishes to the following MQTT topics:

  • hasp/<nodename>/command: Used to send page configurations and value updates

Requirements

  • MQTT broker
  • OpenHASP-compatible display

Acknowledments

Thanks two these two MQTT signalk-server plugins, which i have used as a base for this plugin:

  • https://github.com/iuriaranda/signalk-mqtt-bridge
  • https://github.com/tkurki/signalk-mqtt-gw

License

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

Author

Manuel Jung [email protected]