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-nefit-easy

v3.0.0

Published

Homebridge plugin for Nefit Easy™ (aka Worcester Wave™, Junkers Control™)

Readme

Homebridge Nefit Easy™ plugin

This is a plugin for Homebridge to allow controlling your Nefit Easy™ (aka Worcester Wave™, Junkers Control™) thermostat through Apple HomeKit.

Uses the bosch-xmpp module under the hood to communicate with the Nefit/Bosch backend.

Requirements

  • Node.js 22.12.0 or later
  • Homebridge v1.6.0 or later, including Homebridge v2

Installation

Search for homebridge-nefit-easy on the Plugins tab of the Homebridge UI, or install it from the command line:

$ npm i homebridge-nefit-easy -g

Homebridge plugins need to be installed globally, so the -g is mandatory.

Configuration

Configure the plugin from the Homebridge UI, or add a platform block to your config.json:

"platforms": [
    {
        "platform": "NefitEasy",
        "name": "Nefit Easy",
        "serialNumber": "NEFIT_SERIAL_NUMBER",
        "accessKey": "NEFIT_ACCESS_KEY",
        "password": "NEFIT_PASSWORD",
        "showOutdoorTemperature": false,
        "pollingInterval": 60
    }
]

| Option | Required | Default | Description | |---|---|---|---| | platform | yes | | Must be NefitEasy. | | name | no | Nefit Easy | The name shown in HomeKit, and the one you use in Siri commands. | | serialNumber | yes | | The serial number of your thermostat. | | accessKey | yes | | The access key of your thermostat. | | password | yes | | The password you set in the Nefit Easy app. | | showOutdoorTemperature | no | false | Adds a separate temperature sensor for the outdoor temperature measured by the thermostat. | | pollingInterval | no | 60 | Seconds between backend polls. Values below 30 are raised to 30. |

Upgrading from 2.x

Version 3.0.0 turns the plugin into a platform plugin, so the configuration format has changed.

Remove the old NefitEasy and NefitEasyOutdoorTemp entries from the accessories array and add a single platforms entry as shown above. The outdoor temperature sensor is now the showOutdoorTemperature option rather than a separate accessory.

Because the accessory is registered fresh, you may need to reassign it to a room in the Home app once after upgrading.

Supported actions

  • Getting the current temperature
  • Getting the target temperature
  • Setting the target temperature
  • Reading whether the boiler is currently heating
  • Getting the outdoor temperature (optional)

The thermostat keeps running its own schedule; the plugin reports the mode as AUTO and does not switch it off. Setting a temperature from HomeKit applies a manual override, the same as turning the dial on the device.

Behaviour when the backend is unreachable

The Nefit/Bosch backend is not always reliable. The plugin polls it on an interval and serves the last reading it actually received, so a short outage does not disturb HomeKit.

Until a first successful reading arrives, characteristics report a communication failure and HomeKit shows "No Response". This is deliberate: reporting a placeholder value would be indistinguishable from a real measurement and would make automations act on data that was never measured.

Problems on recent Linux distributions

If you're having problems getting any data from the thermostat, and you're using a recent Linux distribution (for instance, Raspbian Buster or later), take a look at this comment.

In short: OpenSSL defaults have changed to require a minimum TLS version and cipher implementation. These defaults cause the Nefit client code to not be able to connect to the Nefit/Bosch backend.

The solution is mentioned here: edit the file /etc/ssl/openssl.cnf and change the following keys to these values:

MinProtocol = None
CipherString = DEFAULT

Development

npm install
npm run build    # compile src/ to dist/
npm run lint
npm test         # unit tests plus accessory tests against the real HAP API