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

matterbridge-govee-lan

v0.1.0

Published

Matterbridge plugin for local Govee LAN Control devices

Readme

matterbridge-govee-lan

npm build

A Matterbridge plugin that exposes compatible Govee lights to Matter controllers by using Govee's local LAN Control protocol. No Govee cloud account, API key, or internet connection is required after LAN Control is enabled.

Features

  • Automatic discovery using Govee multicast and IPv4 broadcast.
  • On/off, brightness, RGB color, and color temperature.
  • Periodic state synchronization.
  • Multiple devices, include/exclude lists, and custom device names.
  • Local-only communication over UDP.

The first tested model is Govee H6046. Other Govee models that implement the same LAN Control commands may work, but should be reported as tested before being listed here.

Requirements

  • Matterbridge 3.10.0 or newer.
  • A Govee device with LAN Control enabled in the Govee Home app.
  • Matterbridge and the Govee device on the same IPv4 LAN.
  • UDP ports 4001, 4002, and 4003 available on the Matterbridge host.

Only one application on a host can normally listen for Govee responses on UDP port 4002. Stop other Govee LAN integrations on the same host if discovery cannot start.

Installation

In the Matterbridge frontend, open Plugins, search for matterbridge-govee-lan, and select Install. Restart Matterbridge when prompted.

Or install from a terminal:

npm install -g matterbridge-govee-lan

Configuration

The default configuration discovers all compatible devices automatically:

{
  "name": "matterbridge-govee-lan",
  "type": "DynamicPlatform",
  "whiteList": [],
  "blackList": [],
  "names": {},
  "broadcastAddresses": [],
  "discoveryInterval": 300,
  "statusInterval": 30,
  "debug": false,
  "unregisterOnShutdown": false
}

Custom names can use either the Govee LAN device ID or its IP address:

"names": {
  "44:88:AA:BB:CC:DD:EE:FF": "TV LEDs",
  "192.168.1.20": "Desk lamp"
}

If your router blocks multicast, the plugin also calculates the subnet broadcast automatically. broadcastAddresses can add another explicit IPv4 broadcast address when needed.

Privacy and limitations

The plugin does not request or store Govee credentials. LAN Control supports the basic light controls above, but not DreamView, scenes, music modes, or per-segment effects.

This community project is not affiliated with or endorsed by Govee.

License

Apache-2.0