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

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

v1.0.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. Fork of @shockers/node-red-plugin-grouped-flows with Node-RED 5.x compatibility fixes.

Downloads

112

Readme

node-red-plugin-grouped-flows (YRoshcha fork)

This is a fork of SvenHockers/node-red-grouped-flows, maintained by YRoshcha to add Node-RED 5.x compatibility. The upstream repository's issue tracker is closed to new issues, so fixes are maintained here instead. See CHANGES.md for the full patch-by-patch technical writeup, and NOTICE for attribution details.

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.

Node-RED 5.x compatibility

This fork works unmodified on both Node-RED 4.x and 5.x - the same grouped-flows.html detects which layout it's running on at mount time and adjusts accordingly. If something still looks off on a specific NR5.x point release, check CHANGES.md first; several of the fixes here are pixel-measurement-based rather than hardcoded, but a few (e.g. --nr-grouped-flows-header-height-* defaults) may need a nudge via a custom theme on unusual setups - see the CSS Customisation section below.

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 @yroshcha/node-red-plugin-grouped-flows

Or from git directly:

npm install github:yroshcha/node-red-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 (NR4, and internal to NR5) | | --nr-grouped-flows-tab-height-single | 36px | Height of the tab area when only the top row is visible (NR4, and internal to NR5) |

These properties are defined on #red-ui-workspace.nr-grouped-flows-enabled (and, on NR5, mirrored onto #red-ui-header-tabs.nr-grouped-flows-enabled). Override them in a custom theme or a browser extension stylesheet targeting the same selector.

NR5 only

On Node-RED 5.x, the tab bar lives in the redesigned header rather than inside the workspace, so growing it also has to grow the header itself (otherwise the Palette/Workspace/Sidebar row below gets covered). This is handled automatically at runtime - the plugin measures the actual rendered height of the tab bar and applies it, rather than trusting a fixed number - but the values below are the fallback used for the very first render before that measurement lands, and can be overridden if your theme's tab row height is unusually large:

| Property | Default | Description | |---|---|---| | --nr-grouped-flows-header-height-dual | 76px | Fallback header height when both rows are visible | | --nr-grouped-flows-header-height-single | 40px | Fallback header height when only the group row is visible |

Defined on #red-ui-editor.

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