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

@ikuwow/homebridge-mitsubishi-aircon

v2.0.0

Published

Homebridge plugin for Mitsubishi air conditioners (Kirigamine REMOTE / RacEstVis Web service, Japan)

Readme

@ikuwow/homebridge-mitsubishi-aircon

npm

Homebridge plugin for Mitsubishi air conditioners that talk to the Japanese 霧ヶ峰 REMOTE (RacEstVis) Web service. Fork of japaniot/homebridge-mitsubishi-aircon.

Why this fork

The upstream plugin uses two Homebridge APIs that were removed in Homebridge v2 (PlatformAccessory.reachable / PlatformAccessory.updateReachability), so it fails to load on v2. There is no actively maintained alternative for the Japan-only Kirigamine REMOTE / RacEstVis backend, so this fork keeps the existing reverse engineered protocol implementation and rebuilds the surrounding packaging.

From 2.0.0 the plugin loads on both Homebridge ^1.8.0 and ^2.0.0. The two removed-API calls were deleted; in v1.x they were already documented no-ops (updateReachability's body is a single property assignment with no HAP-layer effect), so v1.x behavior is unchanged.

Requirements

  • Homebridge ^1.8.0 || ^2.0.0
  • Node.js ^20 || ^22 || ^24

Installation

Homebridge UI:

  1. Open the Homebridge UI's Plugins tab.
  2. Search for @ikuwow/homebridge-mitsubishi-aircon (paste the full scoped name; it may not appear in autocomplete).
  3. Install and configure via the rendered form.

CLI:

npm install -g @ikuwow/homebridge-mitsubishi-aircon

Configuration

{
  "platforms": [
    {
      "platform": "MitsubishiAircon",
      "name": "Mitsubishi Aircon",
      "user": "USERNAME",
      "pass": "PASSWORD",
      "useDryForCool": false
    }
  ]
}

| Key | Type | Required | Description | |---|---|---|---| | platform | string | yes | Must be MitsubishiAircon. | | name | string | yes | Display label for the platform instance in the Homebridge UI and logs. The plugin itself does not read this value. | | user | string | yes | 霧ヶ峰 REMOTE / くらしID account username. | | pass | string | yes | Password for the same account. | | useDryForCool | boolean | no | When true, "Cool" in HomeKit drives the unit's dry (除湿) mode instead of standard cooling. Defaults to false. |

Notes

  • The plugin talks to https://wwwl12.mitsubishielectric.co.jp/RacEstVis/ using a third-party reverse engineering of the Mitsubishi RAC command protocol (no public spec). Mitsubishi may change or retire this endpoint at any time.
  • The maintainer's account is migrated to MyMU / くらしID and the RacEstVis endpoint still responds for the legacy session flow as of the latest release. Other migrated accounts have not been tested; please open an issue if login fails.

References

  • Upstream plugin: https://github.com/japaniot/homebridge-mitsubishi-aircon
  • Homebridge plugin development: https://developers.homebridge.io/
  • Updating to Homebridge v2.0: https://github.com/homebridge/homebridge/wiki/Updating-To-Homebridge-v2.0
  • HAP-NodeJS HeaterCooler service: https://developers.homebridge.io/#/service/HeaterCooler
  • Plugin config schema spec: https://developers.homebridge.io/#/config-schema

Releasing

Releases are automated via release-please and gated through pull requests.

  1. Land changes on master using Conventional Commits in the commit message (or, if you Squash & Merge, in the PR title):
    • feat: ... for new features (minor bump)
    • fix: ... for bug fixes (patch bump)
    • feat!: ... or a BREAKING CHANGE: footer for breaking changes (major bump)
    • chore:, docs:, refactor:, test:, ci:, build: do not trigger a release on their own — use these for workflow / CI / infrastructure / dev-tooling changes that should not open a Release PR by themselves
    • .github/workflows/* edits should default to ci: or chore: unless the change itself ships a user-facing fix
  2. release-please opens (or updates) a "Release PR" with the next version and a CHANGELOG.md diff. Review and merge it.
  3. Merging the Release PR creates the GitHub Release + git tag and publishes the package to npm automatically.

To force a specific version, add a Release-As: footer to any commit on master.

If npm publish fails after the GitHub Release was already created (e.g. transient registry issue or a missing Trusted Publisher configuration), re-run only the failed jobs from the workflow run page (Actions tab → the failed run → "Re-run failed jobs"). The tag and Release are reused; only the publish job replays.

License

CC BY-NC-SA 4.0