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-frigidaire-connected-ac

v2.0.0

Published

Homebridge plugin to control Frigidaire WiFi (Connected) air conditioners directly from HomeKit.

Readme

homebridge-frigidaire-connected-ac

A Homebridge plugin that controls Frigidaire WiFi (Connected) air conditioners directly from HomeKit, using your Frigidaire app account.

It is a modernized rewrite (ESM, Homebridge v2 API, TypeScript) of @reedptaylor/homebridge-frigidaire-ac-plugin, with a native, dependency-free TypeScript client for the Frigidaire / Electrolux OCP cloud API — it no longer depends on @samthegeek/frigidaire (or any other runtime package).

What you get per AC

  • HeaterCooler — on/off, current & target temperature, cooling state (cooling only).
  • Fan — on/off, speed (low / medium / high), vertical swing.
  • Eco Mode switch.
  • Filter status sensor.

Install

npm install -g homebridge-frigidaire-connected-ac

No runtime dependencies — the Frigidaire cloud client is built in.

Configure

Use the Homebridge UI (the config form is provided), or add a platform block:

{
  "platforms": [
    {
      "platform": "FrigidaireACPlatform",
      "username": "[email protected]",
      "password": "your-frigidaire-password",
      "pollingInterval": 10000,
      "cacheRefreshToken": true
    }
  ]
}

| Option | Default | Description | |--------|---------|-------------| | username | — | Frigidaire account email (required). | | password | — | Frigidaire account password (required). | | countryCode | US | ISO country code for your account region (required by the cloud API). | | pollingInterval | 10000 | How often (ms) to refresh from the cloud. Too low risks rate-limiting. | | cacheRefreshToken | true | Cache the auth token to reduce logins. |

Notes

  • Requires Homebridge ≥ 1.8 (works on Homebridge 2.x) and Node ≥ 20.
  • This talks to Frigidaire's (unofficial) cloud API, so the ACs must be online and set up in the Frigidaire app first.
  • HomeKit reads return the last polled value instantly and update in the background; writes are sent to the cloud immediately.

Develop

npm install
npm run build   # tsc -> dist/
npm run lint

Live test (read-only)

Validate auth + discovery + telemetry against your real account without HomeKit:

npm run build
FRIGIDAIRE_USER='[email protected]' FRIGIDAIRE_PASS='secret' node test/live-test.mjs

It prints each discovered AC and its parsed state, and sends no commands.

License

Apache-2.0