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-padavan

v2.2.0

Published

Node-RED nodes for managing routers with Padavan firmware.

Readme

node-red-contrib-padavan

[RU] | [EN]

A set of Node-RED nodes for managing routers running Padavan firmware.

This package uses the padavan library to interact with the router via its web interface (HTTP). It provides tools for monitoring, configuration, diagnostics, and firmware management.

Features

  • Full Control: Manage NVRAM settings, services, and power state via HTTP.
  • Monitoring: Get real-time traffic history (daily/monthly) and system status (CPU/RAM/Uptime).
  • Device Tracking: Retrieve connected clients with smart filtering for "ghost" connections (ARP caching).
  • Diagnostics: Built-in Wi-Fi Scanner and "Wi-Fi Doctor" for analyzing interference and finding the best channel.
  • Firmware Management: Check for updates, trigger builds in GitHub Actions, and flash the router directly from Node-RED.

Installation

Install via the Node-RED Manage Palette or run the following command in your Node-RED user directory:

npm install node-red-contrib-padavan

Nodes

⚙️ Configuration (padavan-config)

Configures the connection to the router (IP, Login, Password) and optionally to GitHub (for firmware updates). Supports secure credential storage.

🖥️ System (padavan-system)

Performs system operations and diagnostics.

  • Get Status: CPU load, RAM usage, Uptime.
  • Get Log: Fetch system logs.
  • Reboot: Restart the router.
  • Scan Wi-Fi: Perform a Site Survey (2.4GHz / 5GHz).
  • Wi-Fi Doctor: Analyze the environment and recommend the optimal channel.

📱 Devices (padavan-devices)

Lists connected clients.

  • Returns IP, MAC, Hostname, Connection Type, and RSSI.
  • Calculates changes (added/removed/changed devices) since the last check.
  • Filters out temporary Ethernet "ghosts" when devices switch from Wi-Fi.

📊 History (padavan-history)

Retrieves traffic usage statistics.

  • Prioritizes Monthly stats for billing cycles.
  • Falls back to Daily stats if monthly data is missing.
  • Provides pre-calculated networkUsageMB for easy integration with voice assistants (e.g., Google Home).

🔧 Params (padavan-params)

Low-level access to router settings (NVRAM).

  • List: Dump all NVRAM variables.
  • Get: Read specific variables.
  • Set: Change variables with support for sid_list (service restart) and custom action modes.

☁️ Upgrade (padavan-upgrade)

Manages the firmware lifecycle via GitHub Actions.

  • Check Updates: Compare current version with the latest artifact.
  • Build: Trigger a new build workflow in your repository.
  • Flash: Download the artifact and upgrade the router.

Migration

Upgrading from v1? Check the Migration Guide for details on breaking changes and removed features (like SpeedTest).