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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@maddytp/node-red-dashboard-2-ui-reef

v1.0.0

Published

Set of UI nodes for aquarium automation based on @flowfuse/node-red-dashboard

Readme

node-red-dashboard-2-ui-reef

platform

These nodes were designed to facilitate the creation of a Node-RED aquarium or hydroponics controller. @flowfuse/node-red-dashboard is required and must be installed first.

image

Install

Either use the Manage Palette option in the Node-RED Editor menu, or run the following command in your Node-RED user directory - typically ~/.node-red

npm install @maddytp/node-red-dashboard-2-ui-reef

Feed

Feed node is intended to trigger feed or maintenance cycles. The On Start value is sent when first initialized with the On Cancel value sent at the end of countdown or when cancelled.

Probe

Probe accepts two types of data, live data or stored data. Live data can be fed via msg.payload or stored data via an array of objects with an x and y property:

Live data:

msg = { payload: 8.15 }

Stored data:

msg = {
    payload: [
        { x: 1520527095000, y: 8.15 },
        { x: 1520934095000, y: 8.17 }
    ]
}

When providing data for the time scale, this node uses timestamps defined as milliseconds since epoch (midnight January 1, 1970, UTC) internally. However, it will also accept most datetime formats.

Value on the right will show most recent datapoint whether that be live data or stored data. If a symbol is specified it will be appended to this value only. Time component will be validated against the configured timeframe and older values dropped. Additionally, there are options to round values to a decimal place and/or map value(s) to a range.

Output

Output node combines elements of the core function and dashboard button group nodes to allow static or dynamic output. Static options send value on selection whereas the function option will modify msg inputs in the same way the core function node operates.

If msg.display property is set in function the value will be sent to the UI to be displayed in the upper-right hand of widget. Switch state is stored in node context so it can be restored on restart if Node-RED settings specify "localfilesystem" as store. Color option allows specific colors to be set for different switch positions.

Input

Input node is a modification of dashboard button-group node which sets switch based on input value. Color option allows specific colors to be set for different switch positions.

Important Note

These nodes would not be possible without the following projects: