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-huum-sauna2

v1.0.1

Published

Homebridge plugin for HUUM sauna heaters. Control power, target temperature, and monitor current temperature from HomeKit.

Readme

homebridge-huum-sauna2

Homebridge plugin for HUUM sauna heaters. Control your sauna from Apple HomeKit.

Features

  • On/Off — Turn the sauna heater on and off from HomeKit
  • Temperature control — Set target temperature (40–110°C)
  • Current temperature — Monitor real-time sauna temperature
  • Heating status — See whether the sauna is actively heating or idle
  • Door safety — Refuses to start the heater if the sauna door is open (same behavior as the HUUM app)

Requirements

  • HUUM sauna heater with the UKU WiFi controller
  • HUUM app account with a connected sauna
  • Homebridge >= 1.6.0

Installation

Via Homebridge Config UI X (recommended)

Search for homebridge-huum-sauna2 in the Homebridge plugin search and click Install.

Via command line

npm install -g homebridge-huum-sauna2

Configuration

Via Config UI X

After installing, go to the plugin settings and enter your HUUM app email and password.

Manual configuration

Add to the accessories array in your Homebridge config.json:

{
    "accessory": "HuumSauna",
    "name": "Sauna",
    "username": "[email protected]",
    "password": "your-huum-password",
    "pollInterval": 60,
    "defaultTemp": 80,
    "minTemp": 40,
    "maxTemp": 100
}

| Parameter | Required | Default | Description | |-----------|----------|---------|-------------| | username | Yes | — | Your HUUM app email | | password | Yes | — | Your HUUM app password | | pollInterval | No | 60 | Polling interval in seconds (10–600) | | defaultTemp | No | 80 | Default target temp in °C (40–110) | | minTemp | No | 40 | Minimum temp in °C | | maxTemp | No | 100 | Maximum temp in °C |

How It Works

The plugin uses the HUUM cloud API (api.huum.eu) with basic authentication — the same credentials you use in the HUUM app. It polls the sauna status at the configured interval and pushes updates to HomeKit.

The sauna appears as a Thermostat accessory in HomeKit with Heat and Off modes.

HUUM API Status Codes

  • 230 — Sauna offline
  • 231 — Sauna online and heating
  • 232 — Sauna online, not heating
  • 233 — Sauna in use by another user

Troubleshooting

Sauna won't turn on — Check that the sauna door is closed. The plugin enforces the same door safety check as the HUUM app.

"Poll failed" errors — Verify your HUUM credentials are correct and that you can log into the HUUM app.

Temperature not updating — The plugin polls at the configured interval (default 60 seconds). Decrease pollInterval for faster updates.

License

MIT