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

node-red-contrib-s2

v0.1.1

Published

Node-RED nodes for S2 energy management protocol (EN 50491-12-2)

Readme

node-red-contrib-s2

Node-RED nodes for the S2 energy management protocol (EN 50491-12-2).

S2 is a European standard for demand-side energy flexibility. It defines how a Customer Energy Manager (CEM) communicates with Resource Managers (RMs) to coordinate energy consumption, production, and storage.

Requirements

  • Node-RED >= 4.1.0
  • Node.js >= 24

Nodes

| Node | Description | |------|-------------| | s2-rm | S2 Resource Manager - manages protocol sessions with one or more CEMs | | s2-rm-config | Configuration for RM identity: resource ID, name, roles, control types, serial number | | s2-cem-config | Configuration for CEM connection (WebSocket URL and credentials) | | s2-websocket | WebSocket transport for S2 communication with a CEM |

Features

  • S2 protocol handshake and session management
  • Operation Mode Based Control (OMBC)
  • Power Envelope Based Control (PEBC) with configurable power constraints
  • PowerMeasurement forwarding (3-phase symmetric or per-phase L1/L2/L3)
  • PowerForecast support
  • Multiple concurrent CEM sessions
  • Configurable RM roles (Consumer, Producer, Storage)
  • Context variable templates in serial number (e.g. {{global.vrmId}})

Installation

Install via the Node-RED palette manager, or from the command line:

cd ~/.node-red
npm install node-red-contrib-s2

Quick start

  1. Add an s2-rm-config node and configure your Resource Manager identity (name, roles, control types).
  2. Add an s2-cem-config node with the WebSocket URL and credentials of your CEM.
  3. Wire an s2-websocket node to an s2-rm node:
    • s2-websocket output 2 -> s2-rm input
    • s2-rm output 1 -> s2-websocket input
  4. s2-rm output 2 carries S2 messages from the CEM (e.g. SelectControlType, ReceptionStatus).
  5. s2-rm output 3 carries instructions from the CEM (e.g. PEBC.Instruction, OMBC.Instruction).

Sending PowerMeasurements

To send power measurements to the CEM, inject a message into the s2-rm input:

{
  "payload": {
    "command": "PowerMeasurement",
    "cemId": "cem",
    "values": [
      { "commodity_quantity": "ELECTRIC.POWER.3_PHASE_SYMMETRIC", "value": 1500 }
    ]
  }
}

The s2-rm node emits a PowerMeasurementStart signal on output 1 when the CEM selects a control type, so you can use that to trigger periodic measurements.

Sending PowerForecasts

{
  "payload": {
    "command": "Forecast",
    "cemId": "cem",
    "forecast": {
      "startTime": "2026-04-14T10:00:00Z",
      "elements": [
        {
          "duration": 900000,
          "power_values": [
            { "commodity_quantity": "ELECTRIC.POWER.3_PHASE_SYMMETRIC", "value_expected": 1500 }
          ]
        }
      ]
    }
  }
}

Updating PEBC PowerConstraints

{
  "payload": {
    "command": "PowerConstraints",
    "cemId": "cem",
    "constraints": {
      "commodityQuantity": "ELECTRIC.POWER.3_PHASE_SYMMETRIC",
      "minPower": -3000,
      "maxPower": 3000
    }
  }
}

Constraints are stored at the node level and automatically sent when a CEM selects PEBC.

Development

npm install
npm run build
npm test

License

MIT - Copyright (c) 2026 Victron Energy BV