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-electrolux-dehumidifier

v1.6.7

Published

Homebridge plugin for Electrolux dehumidifier devices

Readme

Homebridge Electrolux Dehumidifier Plugin

This Homebridge plugin allows you to control your Electrolux dehumidifier with HomeKit. It integrates with the Electrolux API to provide basic control of your dehumidifier.

Note: This plugin has only been tested on the Electrolux DEHUMIDIFIER ED2171WA model.

Features

  • Control dehumidifier power (on/off)
  • Auto-renewal of access tokens

Installation

npm install -g homebridge-electrolux-dehumidifier

Configuration

Add the following to your Homebridge config.json:

{
  "platforms": [
    {
      "platform": "ElectroluxDehumidifier",
      "name": "Electrolux Dehumidifier",
      "apiKey": "YOUR_API_KEY",
      "refreshToken": "YOUR_REFRESH_TOKEN",
      "applianceId": "YOUR_APPLIANCE_ID",
      "pollingInterval": 60,
      "debug": false
    }
  ]
}

Configuration Options

| Option | Description | |--------|-------------| | platform | Must be "ElectroluxDehumidifier" | | name | Name of your dehumidifier in HomeKit | | apiKey | Your Electrolux API key (x-api-key) | | refreshToken | Your Electrolux refresh token | | applianceId | Your Electrolux dehumidifier appliance ID | | pollingInterval | (Optional) How frequently to poll for updates (in seconds, default: 60) | | debug | (Optional) Enable debug logging (default: false) |

Obtaining API Credentials

To use this plugin, you need to obtain your API key, refresh token, and appliance ID from Electrolux:

  1. Get your API key (x-api-key) from the Electrolux developer portal
  2. Use the refresh token from your initial authentication
  3. Find your appliance ID by making an API call to list your appliances

HomeKit Services

This plugin currently creates the following HomeKit service:

  1. Switch - Basic on/off control for the dehumidifier

Note: While the underlying API supports additional features like humidity control, fan speed settings, and Clean Air Mode, these are not currently exposed as HomeKit services. Future updates may add these capabilities.

Development

# Clone the repository
git clone https://github.com/ParinLL/electrolux-dehumidifier-api.git
cd electrolux-dehumidifier-api

# Install dependencies
npm install

# Build the plugin
npm run build

# Link for development
npm link

License

Apache-2.0