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

homekitify

v0.1.0-beta.0

Published

Scan your LAN, bridge non-HomeKit Wi-Fi devices into Apple Home. One command, one QR scan, zero accounts.

Readme

homekitify

Beta. TP-Link Kasa is hardware-verified; the other vendors are config-verified (validated against each plugin's schema, not yet on real hardware) and gated behind --beta. Published under the npm beta tag.

Scan your network, bridge your non-HomeKit Wi-Fi devices into Apple Home. One command, one QR scan, zero accounts.

npx homekitify@beta            # bridges hardware-verified vendors (Kasa)
npx homekitify@beta --beta     # also include the config-verified beta vendors

Lots of cheap smart devices — Kasa bulbs, LIFX, Shelly, WiZ, Wemo, Sonos — work great but have no Apple HomeKit support. Getting them into Apple Home today means a multi-hour manual slog: figure out what you own, learn that Homebridge exists, find the right plugin per brand, hand-write config, set up a boot service, then pair. homekitify collapses that into a ~30-second command for the devices that can be bridged locally — and tells you honestly which ones can't.

What it does

  1. Scans your LAN (mDNS + ARP + per-vendor probes) — read-only, no sudo.
  2. Identifies each device and the Homebridge plugin it needs.
  3. Installs Homebridge + those plugins and generates working config.
  4. Shows a QR code — scan it once in the Home app; the whole fleet pairs.

The single human step is that one QR scan. No usernames, no passwords, no API keys.

Supported devices (Light)

Zero-touch auto-discovery: TP-Link Kasa · WiZ · Shelly (Gen2+) · LIFX · Wemo · Sonos

Local, one quick step: Philips Hue (press the bridge button) · WLED (confirm IP)

Honestly not supported — and homekitify will tell you why instead of pretending:

  • ☁️ Cloud-only devices (Govee, Tuya/Smart Life, Ring, Wyze, Meross) — need an account/API key.
  • 🔒 White-label Tuya devices on BK7238/BK7236 chips — not bridgeable in software.

Tasmota and ESPHome are coming in Light+ (they need a broker / an encryption key, so they're not zero-config).

Commands

homekitify              # default: scan → install → configure → service → pairing QR
homekitify init         # same as bare `homekitify` (--yes to skip prompts, --no-service to skip boot service)
homekitify scan         # read-only LAN discovery + plugin classification (--json)
homekitify doctor       # environment + bridge health check
homekitify status       # is the managed bridge running?
homekitify logs [-n N]  # tail the managed bridge log
homekitify uninstall    # remove the managed service (keeps cache; --purge wipes)
homekitify pair-test    # isolated end-to-end pairing test (see below)

Trying the full flow safely (pair-test)

homekitify pair-test bridges your real local devices through the isolated sandbox bridge and shows a pairing QR. Pair it into a new, separate Apple Home (e.g. "Homekitify Test") — your real Home is never touched. When you press Enter it tears the bridge down and verifies your existing Homebridge is intact.

Status

Early development. The discovery engine, fingerprint map, install, and pairing flow are being built phase by phase. See docs/ for design notes.

Development

npm install
npm run build        # tsup → dist/cli.js
npm test             # L0 unit tests (mocked, no network, no Homebridge)
npm run lnp-check    # confirm this machine's node has LAN access

Safety: the test harness never touches your real Homebridge

If you already run Homebridge, homekitify's integration tests spin up a separate, isolated bridge (its own storage, plugin path, port, and identity) as a tracked child process. A hard preflight guard (src/sandbox/preflight.ts) aborts the run if any sandbox value could collide with a production install, and a health verifier confirms your live bridge is untouched before and after.

Privacy & telemetry

Telemetry is off by default. If you opt in (homekitify telemetry on), the only thing ever sent is anonymous vendor counts (e.g. {"kasa":2,"hue":1}) — never IP addresses, MAC addresses, device names, or any identifier, and only if a collector URL is configured. Toggle anytime with homekitify telemetry on|off|status.

License

Apache-2.0