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-arcus-orchestration

v1.0.4

Published

Node-RED nodes for Arcus Orchestration

Readme

node-red-contrib-arcus-orchestration

Arcus Orchestration is a collection of Node-RED nodes for asset management workflows. It fetches market data, checks signals, simulates OpenADR events, and decides when to shut down or bypass assets based on configurable criteria.

This Node-Red library packages the functionality needed for asset orchestration withing the Arcus hub environment.

All rights Reserved to ArcusPower.

Copyright Arcus Power 2025. All rights reserved

Maintainers: -Javier Vite -Patrick Bye

Licensed as AGPL-3.0-only

Install

npm install node-red-contrib-arcus-orchestration

Then restart Node-RED and you will see the Arcus nodes in the palette.

Nodes

  • Datahub: Fetch data from the Arcus/NRGStream API with token handling, CSV/JSON parsing, and date range options.
  • Asset-availability: Retrieve availability data and flag accepted offers to bypass event checks.
  • Signal-buffer: Delay shutdown decisions to prevent rapid cycling.
  • openadr-listener / openadr-simulator: Receive or simulate OpenADR events.
  • shutdown-config / asset-config: Configuration nodes for shutdown and asset parameters.
  • oadr-check, demand-check, realtime-price-check, forecast-price-check: Condition evaluators.
  • warmup-cooldown: Manage warmup/cooldown timing.
  • shutdown-decision-combiner: Merge multiple shutdown decisions.
  • event-signal: Central decision node that applies configured rules and respects accepted-offer bypass flags.

Basic use

  1. Use Datahub to pull market data (CSV or JSON).
  2. Feed results into Asset-availability to detect accepted offers (sets bypassEventSignal).
  3. Pass through event-signal to decide shutdowns; optionally add individual check nodes before it.
  4. Buffer shutdown decisions with Signal-buffer and forward to your control system.

Publish checklist

  • name starts with node-red-contrib- and keywords include node-red.
  • node-red section maps each node to its .js file.
  • README present (this file) so the Node-RED library listing renders correctly.
  • Only the whitelisted files are published (see files in package.json); confirm with npm pack --dry-run before publishing.
  • Build step runs before publish and ships obfuscated JS from dist:
    npm install
    npm run build        # creates dist with minified JS and copied html/payload
    npm pack --dry-run   # verify contents
    npm publish --access public