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 🙏

© 2025 – Pkg Stats / Ryan Hefner

homebridge-cync-app

v0.1.8

Published

Homebridge plugin that integrates your GE Cync account (via the Cync app/API) and exposes all supported devices: plugs, lights, switches, etc

Readme

homebridge-cync-app

verified-by-homebridge platform npm npm downloads node-lts license

issues last commit typescript

Homebridge plugin that integrates your GE Cync account (via the Cync app/API) and exposes all supported devices: plugs, lights, switches, etc.

It currently supports:

  • Email + password + 2FA (one-time code) login
  • Persistent token storage in the Homebridge storage path
  • Discovery of Cync “meshes” and devices from the cloud
  • Cync plugs exposed as HomeKit switches/outlets.
  • Cync lights exposed as HomeKit lightbulbs with:
    • On/Off, dimming (Brightness), and color (Hue/Saturation) over LAN.
  • Accessory Information populated from your Cync account (manufacturer, model, serial, firmware).
  • Automatic token refresh to keep your Cync session alive without re-entering codes.
  • Periodic accessory polling so Homebridge stays in sync with the Cync app.

Status: Early LAN preview. Tested with Cync smart plugs and downlights. Other device types may not appear or may behave incorrectly.

Installation

  1. Install via Homebridge UI (Plugins tab) or from the command line:
	npm install -g homebridge-cync-app
  1. Restart Homebridge.

Configuration

Add a platform entry to your Homebridge config.json:

{
  "platforms": [
    {
      "platform": "CyncAppPlatform",
      "name": "Cync App (Dev)",
      "username": "[email protected]",
      "password": "your-cync-password",
      "twoFactor": "123456"
    }
  ]
}

Cync Login / 2FA Flow

  1. Open the plugin settings in Homebridge UI.
  2. Enter your Cync Email and Password.
  3. Click Request Verification Code.
  4. Check your email for the 6-digit Cync verification code.
  5. Enter the code in Verification Code (OTP).
  6. Click the Homebridge Save button.
  7. Restart Homebridge.

On successful login, a token will be stored in cync-tokens.json under the Homebridge storage path. While a valid token exists, the login fields are locked. Click Sign Out in the plugin UI to clear the token and re-enter credentials.

Project Status & Roadmap

  • 0.0.1 – Initial scaffold, basic Homebridge platform, config wiring, and logging.
  • 0.0.2 - Cync cloud login and device list discovery.
    • ✅ 2FA cloud login and token persistence
    • ✅ Cloud discovery of meshes and outlets
    • ✅ Basic HomeKit switch accessories with real Cync names
  • 0.1.0 – Individual accessories for plugs; per-device control. Switches, sensors and lights have not yet been tested and may not work.
  • HomeKit can now control Cync smart plugs directly over the Cync LAN bridge.
  • Switch states update independently and stay in sync between the Cync app and HomeKit.
  • Cloud config is still used for login + topology, but ongoing control is via TCP.
  • 0.1.1 - 0.1.3 - Failed experiment to incorporate custom UI.
  • 0.1.4 - Codebase restored to v0.1.0
  • 0.1.5 - Successful Custom UI implementation, improved 2FA login flow.