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-dreame-vacuum

v0.1.2

Published

Matterbridge plugin for Dreame robot vacuums via Dreame Cloud and MQTT

Readme

matterbridge-dreame-vacuum

Matterbridge plugin for Dreame robot vacuums using Dreame Cloud for commands and Dreame MQTT for live state updates.

This is a fresh Matterbridge port started from the existing homebridge-dreame-vacuum-matter codebase. The Dreame integration layer is intentionally kept close to the original plugin so model-specific behavior can be carried over.

Current Status

  • Reuses Dreame Cloud login, token refresh, discovery, MIoT commands, map parsing, MQTT state updates, polling fallback, and state parser.
  • Reuses the existing Matter RVC state mapping for run mode, clean mode, operational state, power source, and service areas.
  • Adds a Matterbridge DynamicPlatform entry point in src/module.ts.
  • Adds a Matterbridge endpoint adapter around RoboticVacuumCleaner.
  • Adds command bindings for identify, run mode, clean mode, pause, resume, go home, select areas, and skip area.

The exact Matterbridge RVC helper and cluster APIs should be validated against the Matterbridge version installed on the target machine. The adapter code is intentionally isolated under src/matterbridge/ so any API shape corrections stay small.

Development

npm install
npm link matterbridge
npm run build
matterbridge --add .
matterbridge

Matterbridge's development guide recommends linking Matterbridge from a local Matterbridge checkout instead of installing it as a dependency of the plugin. This avoids loading a second copy of Matterbridge or matter.js at runtime.

Configuration

{
  "name": "matterbridge-dreame-vacuum",
  "type": "DynamicPlatform",
  "username": "[email protected]",
  "password": "your-password",
  "country": "eu",
  "endpointMode": "server",
  "exposeServiceArea": true,
  "mapOverrides": []
}

Credentials can also be provided with DREAME_EMAIL and DREAME_PASSWORD.

endpointMode defaults to server. Matterbridge documents this mode as the workaround for Apple Home robotic vacuum compatibility issues because the vacuum is exposed as an independent Matter device instead of a bridged endpoint.

For Apple Home stability, the plugin updates only dynamic attributes after startup. Static RVC metadata such as supported modes, operational state list, and room map data is created with the endpoint and is not rewritten on every MQTT/poll update.

Porting Notes

The Homebridge-specific files were not copied. Matterbridge equivalents are:

  • src/module.ts: plugin entry point and platform lifecycle.
  • src/matterbridge/endpoint-factory.ts: creates the Matterbridge RVC endpoint.
  • src/matterbridge/command-bindings.ts: connects Matterbridge commands to Dreame command handlers.
  • src/matterbridge/state-sink.ts: pushes normalized Dreame state into Matterbridge clusters.

The old HomeKit automation sensors and dock switch are intentionally omitted for now. They can be recreated later as separate Matter endpoints if Apple Home automations need them.