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-cryze-wyze

v1.0.0

Published

Homebridge plugin for Wyze cameras via Cryze (supports Doorbell Pro, Battery Cam Pro)

Readme

Homebridge Cryze Wyze Plugin

npm version License: MIT

A Homebridge plugin that integrates Wyze cameras into Apple HomeKit using Cryze as the backend bridge. Supports Doorbell Pro and Battery Cam Pro - cameras that don't work with the traditional Wyze Bridge.

Features

  • Full HomeKit Secure Video support (with compatible iCloud+ plan)
  • Doorbell Pro support - works with the video doorbell
  • Battery Cam Pro support - works with battery-powered cameras
  • Automatic camera discovery - finds all your Wyze cameras
  • Docker-based - runs Cryze in container for stability
  • Motion detection - receive notifications on your devices
  • Two-way audio - speak through your cameras
  • Local processing - streams stay on your network

Requirements

  • Raspberry Pi 4 (4GB+ RAM recommended) or similar Linux host
  • Docker and Docker Compose installed
  • Homebridge installed and running
  • Wyze account with cameras set up

Quick Start

# Install the plugin
npm install -g homebridge-cryze-wyze

# Or via Homebridge UI:
# 1. Go to Plugins
# 2. Search "homebridge-cryze-wyze"
# 3. Click Install

Configuration

Add this to your Homebridge config.json:

{
  "platform": "CryzeWyze",
  "name": "Cryze Wyze",
  "cryzeApiUrl": "http://localhost:8080",
  "rtspPort": 8555,
  "cameras": [
    {
      "name": "Front Door",
      "wyzeName": "front_door",
      "unbridge": false
    }
  ]
}

Docker Compose Setup

Create docker-compose.yml:

version: '3'
services:
  cryze_api:
    image: ghcr.io/xerootg/cryze-api:latest
    ports:
      - "8080:8080"
    environment:
      - [email protected]
      - WYZE_PASSWORD=yourpassword
    volumes:
      - ./data:/data

  cryze_android:
    image: ghcr.io/xerootg/cryze-android:latest
    privileged: true
    ports:
      - "8555:8554"
    environment:
      - CRYZE_BACKEND_URL=http://cryze_api:8080

How It Works

  1. Cryze runs an Android container that connects to Wyze's P2P servers
  2. Cryze API manages credentials and camera discovery
  3. MediaMTX receives RTSP streams from the Android container
  4. This Plugin bridges RTSP streams to HomeKit

Troubleshooting

Cameras not appearing

  • Check Cryze API is running: curl http://localhost:8080/cameras
  • Verify RTSP streams: ffplay rtsp://localhost:8555/front_door

Video not loading

  • Ensure Docker containers are running: docker-compose ps
  • Check logs: docker-compose logs -f

Connection issues

  • Verify Wyze credentials are correct
  • Check firewall rules for port 8555
  • Ensure cameras are online in Wyze app

Credits

  • Cryze by xerootg - The core bridge software
  • Original threading fixes by Akiva/OpenClaw

License

MIT License - See LICENSE file