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

@shockers/node-red-plugin-grouped-flows

v0.4.0

Published

Replaces the built-in Node-RED flows tab bar with a grouped two-tier tab bar to improve navigation of large Node-RED environments.

Readme

node-red-plugin-grouped-flows

A Node-RED editor plugin that replaces the default single-row flow tab bar with a two-row grouped layout. Flows are organised into named groups; the top row displays group tabs and the bottom row displays the flows belonging to the selected group. Ungrouped flows appear as standalone tabs in the top row.

Group assignments are persisted server-side and shared across all connected editor sessions. Changes take effect for all users after a Deploy, following the same lifecycle as standard flow changes.

Requirements

  • Node-RED >= 3.0.0
  • Node.js >= 18

Installation

Install via the Node-RED Palette Manager, or from the command line in your Node-RED user directory:

npm install @shockers/node-red-plugin-grouped-flows

Restart Node-RED after installation.

Usage

Assigning a flow to a group

  1. Double-click a flow tab, or open the flow's Edit dialog (right-click the tab > Edit).
  2. In the Group field, enter a group name.
  3. Click Done, then Deploy.

The flow will appear under its group tab. Multiple flows can share the same group name; they will all appear in that group's row.

Navigating flows

  • Click a group tab in the top row to display that group's flows in the bottom row.
  • Click any flow tab in the bottom row to activate that workspace.
  • Ungrouped flows appear directly in the top row as standalone tabs.

Reordering

Flows and groups support drag-and-drop reordering. Reordering is persisted on the next Deploy.

Removing a group assignment

Open the flow's Edit dialog, clear the Group field, and Deploy.

Group Persistence

Group assignments are stored server-side in nr-grouped-flows-groups.json in your Node-RED user directory. This file is written on each Deploy and read on editor load, ensuring all connected users see the same group layout after a Deploy.

Prior to version 0.3.0, group assignments were stored in the browser's localStorage and were therefore device-specific. After upgrading to 0.3.0, group assignments will initially appear empty; reassign flows to groups and Deploy once to restore the shared state.

CSS Customisation

The plugin exposes CSS custom properties for overriding the default tab area heights:

| Property | Default | Description | |---|---|---| | --nr-grouped-flows-tab-height-dual | 72px | Height of the tab area when both rows are visible | | --nr-grouped-flows-tab-height-single | 36px | Height of the tab area when only the top row is visible |

These properties are defined on #red-ui-workspace.nr-grouped-flows-enabled. Override them in a custom theme or a browser extension stylesheet targeting the same selector.

Debug Mode

Debug logging can be toggled from the browser console without restarting Node-RED:

window.nrGroupedTabsDebug(true)   // enable
window.nrGroupedTabsDebug(false)  // disable

Debug output is written to the browser console under the [nr-grouped-flows][debug] prefix.

License

Apache-2.0