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

homebridge-dreame-fp10

v0.1.0

Published

Homebridge 2.0 plugin for the Dreame FP10 Air Purifier with HAP and Matter support.

Downloads

155

Readme

Homebridge Dreame FP10

Homebridge 2.0 dynamic platform plugin for the Dreame FP10 / Furcatch Air Purifier FP10.

The plugin talks to Dreame Cloud with the same MiOT command path used by the Home Assistant integration, then exposes the purifier through:

  • HomeKit/HAP services:
    • AirPurifier
    • AirQualitySensor
    • TemperatureSensor
    • HumiditySensor
    • FilterMaintenance
  • Homebridge 2 Matter API when Matter is enabled for the bridge.

Requirements

  • Homebridge >= 2.0.0
  • Node.js 22 or 24, matching Homebridge 2's supported runtime range
  • A Dreame account with a bound FP10 purifier

Configuration

{
  "platform": "DreameFP10",
  "name": "Dreame FP10",
  "username": "[email protected]",
  "password": "your-password",
  "country": "eu",
  "scanInterval": 10,
  "enableHap": true,
  "enableMatter": true,
  "devices": []
}

devices is optional. Leave it empty to expose all supported FP10 purifiers on the account, or add specific Dreame did values to limit discovery.

Matter

Homebridge 2 Matter support is opt-in at the bridge level. This plugin only registers Matter accessories when:

  1. enableMatter is not set to false.
  2. Homebridge reports that Matter is enabled for this bridge through api.isMatterEnabled().

For a child bridge, enable Matter in the platform _bridge config. For the main bridge, enable it in the top-level bridge config. Homebridge publishes the Matter pairing code/QR during startup.

The Matter accessory is registered as AirPurifier when Homebridge exposes that Matter device type, with a fallback to Fan. It publishes clusters for on/off, fan control, air quality, PM2.5, TVOC, temperature, humidity, HEPA filter and activated carbon filter monitoring.

HAP Mapping

| FP10 feature | HomeKit/HAP service | | --- | --- | | Power | AirPurifier.Active | | Auto/manual target | AirPurifier.TargetAirPurifierState | | Manual speed 1-10 | AirPurifier.RotationSpeed in 10% steps | | Child lock | AirPurifier.LockPhysicalControls | | PM2.5 / TVOC / quality | AirQualitySensor | | Temperature | TemperatureSensor | | Humidity | HumiditySensor | | HEPA life | FilterMaintenance |

Setting rotation speed immediately switches the FP10 to manual mode locally, then the next poll reconciles with the purifier's real cloud state.

Development

npm install
npm run build
npm link
homebridge -D

To use a separate dev Homebridge directory:

homebridge -D -U ~/.homebridge-dev