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

iobroker.eebus

v0.1.0

Published

NexoWatt EEBUS Adapter for local SHIP/SPINE energy devices

Readme

ioBroker.eebus

NexoWatt EEBUS Adapter for ioBroker.

This adapter is a NexoWatt EEBUS adapter prototype for local EEBUS SHIP/SPINE communication with energy devices such as wallboxes, inverters, smart meters, CLS boxes, batteries and grid connection points. It is prepared for publication as the npm package iobroker.eebus and for HTTPS-based installation from the GitHub repository.

Status: initial implementation scaffold. It is designed to be field-tested with real devices before production use.

Documentation basis

The first implementation was prepared from the EEBUS documentation package supplied to the project, especially:

  • EEBus SHIP Technical Specification v1.1.0
  • EEBus SHIP Pairing Service Technical Specification v1.0.0
  • EEBus SPINE v1.3.0
  • EEBus SHIP Requirements for Installation Process v1.1.0
  • Use cases for EV charging, battery control, grid connection point monitoring, inverter monitoring, power limitation and PV/battery visualization

Public project information is available from the EEBUS Initiative: https://www.eebus.org/

Features

Implemented in this first repository version:

  • ioBroker TypeScript adapter structure
  • JSONConfig admin UI
  • local SHIP identity generation:
    • secp256r1 private key via OpenSSL
    • self-signed X.509 certificate
    • stable SHIP ID
    • local SKI
    • SHA-256 certificate fingerprint
  • protected/encrypted native handling for private key and pairing PIN
  • mDNS browsing for EEBUS _ship._tcp and _shippairing._tcp
  • optional local TLS/WebSocket SHIP endpoint skeleton
  • device object model:
    • devices.<deviceId>.info.*
    • devices.<deviceId>.measurements.*
    • devices.<deviceId>.control.*
    • devices.<deviceId>.limits.*
    • devices.<deviceId>.pairing.*
    • devices.<deviceId>.raw.*
  • command routing scaffold for:
    • enableCharging
    • maxChargingPower
    • maxChargingCurrent
    • activePowerLimit
    • setpointPower
  • conservative command behavior:
    • commands are not sent to untrusted devices by default
    • command dry-run is enabled by default
    • draft SPINE command envelopes are written to raw.lastCommand

Object model

Identity

| State | Type | Role | Description | | --- | --- | --- | --- | | identity.localSki | string | info | Local EEBUS SKI | | identity.shipId | string | info | Local SHIP ID | | identity.certificateFingerprint | string | info | Local certificate fingerprint |

Discovery

| State | Type | Role | Description | | --- | --- | --- | --- | | discovery.enabled | boolean | switch.enable | Discovery configuration state | | discovery.discoveredCount | number | value | Number of currently known discovered nodes | | discovery.lastDiscovery | string | json | Last raw discovery event |

Device states

Each discovered device gets this structure:

devices.<deviceId>.info.*
devices.<deviceId>.measurements.*
devices.<deviceId>.control.*
devices.<deviceId>.limits.*
devices.<deviceId>.pairing.*
devices.<deviceId>.raw.*

Read-only measurement and information states:

online
manufacturer
model
serialNumber
ski
deviceType
shipId
power
energy
voltage
current
frequency
soc
chargingState

Writable control and limit states:

enableCharging
maxChargingPower
maxChargingCurrent
activePowerLimit
setpointPower
pairing.trusted

Installation

After publication to the npm registry:

npm install iobroker.eebus

For ioBroker systems, install the adapter through the ioBroker admin interface or CLI once the package is available. During development or controlled rollout, the repository can also be installed via HTTPS:

npm install git+https://github.com/NexoWatt/ioBroker.eebus.git

The package is published under a proprietary NexoWatt license. Public availability of the package does not grant third-party usage, copying, modification, redistribution or sublicensing rights.

Configuration

Default configuration:

| Setting | Default | Meaning | | --- | ---: | --- | | discoveryEnabled | true | Browse for local EEBUS SHIP services | | measurementIntervalSec | 10 | Measurement refresh interval | | metadataIntervalSec | 60 | Metadata refresh interval | | shipServerEnabled | true | Start local TLS/WebSocket SHIP endpoint | | announceShipService | false | Announce local SHIP service via mDNS | | shipPort | 4712 | Local SHIP endpoint port | | shipPath | /ship/ | WebSocket path | | commandDryRun | true | Record draft command payloads without sending | | allowCommandsToUntrustedDevices | false | Prevent accidental commands to untrusted devices |

IANA PEN

The default ianaPen value is a placeholder (999999). Replace it with the real NexoWatt IANA PEN before production use if an official PEN is available.

Runtime notes

The adapter uses info.connection to indicate that the local EEBUS networking subsystem is active. It does not mean that a specific remote device has already completed SHIP/SPINE pairing.

Device-level availability is exposed via:

devices.<deviceId>.info.online

Pairing and trust

This version contains a conservative trust model:

  1. Devices are discovered through mDNS.
  2. The remote SHIP ID and SKI are stored under devices.<deviceId>.pairing.*.
  3. The user or a later pairing workflow must set devices.<deviceId>.pairing.trusted to true.
  4. Commands are blocked unless the device is trusted or the advanced option allowCommandsToUntrustedDevices is enabled.

This is not yet a fully certified EEBUS pairing implementation.

Known limitations

This initial version is intentionally honest about what has and has not been verified:

  • Real device communication has not been tested because no real EEBUS logs or payloads were available during implementation.
  • The SHIP endpoint is a TLS/WebSocket skeleton and still needs validation with physical EEBUS devices.
  • SPINE command payloads are draft mappings and must be verified against target device traces.
  • Discovery uses mDNS service data and does not guarantee successful SHIP pairing.
  • Production use with CLS boxes and grid operator equipment requires additional certification-level testing.

Development

Recommended development flow:

npm install
npm run build
npm test

The adapter requires Node.js 20 or newer.

License

NexoWatt Proprietary License.

Copyright © 2026 NexoWatt. All rights reserved.

This software may only be used by NexoWatt or by parties explicitly authorized in writing by NexoWatt. Public npm/GitHub availability does not make this adapter open source. See LICENSE.