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-dibby-wemo

v2.0.39

Published

Node-RED nodes for local Belkin Wemo device control — no cloud required

Readme

node-red-contrib-dibby-wemo

Node-RED nodes for local Belkin Wemo device control — no cloud required.

Four drag-and-drop nodes let you discover, control, and monitor Wemo devices inside any Node-RED flow. All communication is direct local UPnP/SOAP — no Belkin account or internet connection needed.


Installation

Via Node-RED Palette Manager (recommended)

  1. Open Node-RED → MenuManage palette
  2. Click Install
  3. Search for node-red-contrib-dibby-wemo
  4. Click Install

Via npm

cd ~/.node-red
npm install node-red-contrib-dibby-wemo

Restart Node-RED after installation.


Nodes

wemo-config — Shared device config

A config node (no inputs or outputs). Stores the IP address and port for a single Wemo device. Referenced by wemo-control and wemo-state.

| Property | Default | Description | |---|---|---| | Name | — | Label for this device | | Host | — | Device IP address | | Port | 49153 | UPnP port (usually 49153–49156) |


wemo-control — Send ON/OFF

Send a command to a Wemo device and receive the confirmed state back.

Input

| msg.payload | Meaning | |---|---| | 'ON' / true / 1 | Turn device on | | 'OFF' / false / 0 | Turn device off | | 'toggle' | Toggle current state |

Output — one message after the command is confirmed:

| Property | Type | Value | |---|---|---| | msg.payload | string | 'ON' or 'OFF' | | msg.topic | string | Device name | | msg.device | object | { host, port, name } |

Status indicators

  • 🟢 Green dot — device is ON
  • ⚫ Grey ring — device is OFF
  • 🔴 Red ring — error

wemo-state — Poll device state

Polls a Wemo device on a configurable interval and emits a message when the state changes (or on every poll).

Config

| Property | Default | Description | |---|---|---| | Device | — | wemo-config node reference | | Interval | 10 s | How often to poll | | Only on change | ✓ | Only emit if state changed since last poll |

Output — one message per poll (or per change):

| Property | Type | Value | |---|---|---| | msg.payload | string | 'ON' or 'OFF' | | msg.topic | string | Device name | | msg.device | object | { host, port, name } |


wemo-discover — SSDP discovery

Triggers a network scan and emits one message per Wemo device found on your LAN.

Input — any message triggers a scan.

Config

| Property | Default | Description | |---|---|---| | Timeout | 8 s | How long to wait for SSDP responses |

Output — one message per discovered device:

| Property | Type | Value | |---|---|---| | msg.payload | object | { host, port, friendlyName, udn, productModel, firmwareVersion } | | msg.topic | string | Device friendly name |

Tip: Use the host and port values from discovery output to populate wemo-config nodes for the other node types.


Quick-start Example

[inject (on deploy)] → [wemo-discover] → [debug]
  1. Drop an inject node (set to fire once on deploy), a wemo-discover node, and a debug node
  2. Wire them together
  3. Click Deploy — one debug message per Wemo device appears in the sidebar

Notes

  • SSDP discovery requires the Node-RED host to be on the same network segment as the Wemo devices
  • If running Node-RED in Docker, use --network host for SSDP to work
  • wemo-state starts polling when Node-RED deploys and stops when the flow is redeployed or stopped

Requirements

  • Node-RED ≥ 2.0.0
  • Node.js ≥ 18
  • Wemo devices on the same LAN as the Node-RED host

Links


License

MIT


Part of the Dibby Wemo Manager project.