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

@nero2201/node-red-dashboard-2-ui-header

v1.0.3

Published

A FlowFuse Dashboard 2.0 node that renders configurable content (text, buttons, dropdowns) directly into the dashboard header, next to the page title, on every page.

Readme

node-red-dashboard-2-ui-header

A header node for FlowFuse Dashboard 2.0. It behaves like a small group whose elements (text, buttons, dropdowns) are rendered in the header next to the page title — on every page of the dashboard.

How It Works (Brief)

  • The node is ui-base-scoped (no Group/Page) → the Baseline layout renders it globally on all pages.
  • Content is mounted via Vue Teleport into fixed app bar targets:
    • #app-bar-title → left, directly next to the page title (Position: Left)
    • #app-bar-actions → right in the app bar (Position: Right)
  • Items are configured directly in the node (core widgets cannot be nested in a foreign group).

Item Types

| Type | Behavior | |------|----------| | Text | Static text, or Dynamic → displays the latest msg.payload | | Button | Sends { payload, topic } into the flow on click | | Dropdown | Sends { payload: value, topic } on selection. Options: value=Label (one per line) |

Installation (Local Development)

# in the plugin directory
npm install
npm run build      # generates resources/ui-header.umd.js

# install into Node-RED user directory
cd ~/.node-red
npm install /Users/ben/Coding_root/nodered/ui-header

Then restart Node-RED. After changes to the /ui directory, run npm run build again.

Usage

  1. Drag the ui header node from the palette.
  2. Select the dashboard (ui-base) and position.
  3. Add items (Text/Button/Dropdown).
  4. Deploy → content appears in the header.
  5. Buttons/dropdowns emit msg objects; messages sent to the node's input update Dynamic text items.

Changelog

1.0.3

  • Editor: item settings are now collapsible for a cleaner overview when many items are configured.
  • Editor: page visibility list is now full width and properly aligned.
  • Editor: the Dynamic checkbox is aligned with the other input rows.
  • Editor: added a width setting for dropdowns; the font-size input is more compact.
  • Dashboard: button icons can now be updated dynamically via msg.ui_update.icon (addressed by the item's topic).
  • Dashboard: the header now stays on a single row and scrolls horizontally (thin, auto-hiding scrollbar) when space is tight, instead of clipping content.
  • Dashboard: dropdowns keep a sensible default width and no longer stretch across the app bar.

1.0.1 – 1.0.2

  • Repository/metadata fixes and README translated to English.

1.0.0

  • Initial release: header node for FlowFuse Dashboard 2.0 with text, button, dropdown and template items, dynamic styling and per-page visibility.