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-grizzl-e

v0.1.6

Published

Homebridge plugin for Grizzl-E Connect EV chargers — expose chargers as HomeKit outlets to enable/disable charging

Downloads

767

Readme

homebridge-grizzl-e

npm npm

A Homebridge plugin for Grizzl-E Connect EV chargers by United Chargers.

Each charger in your Grizzl-E Connect account is exposed as a HomeKit accessory with full charging status visibility and control — all on a single accessory detail page.

HomeKit Accessory

Each charger exposes the following:

Outlet (main control)

| Feature | Description | |---|---| | On / Off | Enable or disable charging | | Outlet In Use | Lit when the car is actively drawing power | | Fault | Warning badge shown when the charger reports an error | | No Response | Shown when the charger is offline |

Car Plugged In

An occupancy sensor that activates whenever a car is physically connected to the charger — regardless of whether charging is active or paused.

Connector Status Sensors

Five individual occupancy sensors, each usable as a HomeKit automation trigger:

| Sensor | Active when... | |---|---| | Preparing | Car is connected and the session is initializing | | Charging | Car is actively drawing power | | Suspended by Charger | The charger (EVSE) has paused the session | | Suspended by Car | The car's battery management system has paused the session | | Finishing | The charging session is winding down |

These map directly to the OCPP standard connector statuses (Preparing, Charging, SuspendedEVSE, SuspendedEV, Finishing).

Requirements

  • A Grizzl-E Connect account with at least one charger
  • Homebridge v1.6.0 or later
  • Node.js v20 or later

Installation

Search for Grizzl-E Homebridge in the Homebridge UI, or install manually:

npm install -g homebridge-grizzl-e

Configuration

Configure via the Homebridge UI, or add to your config.json:

{
  "platform": "GrizzlE",
  "name": "Grizzl-E",
  "email": "[email protected]",
  "password": "your-password",
  "pollInterval": 30
}

| Field | Required | Default | Description | |-------|----------|---------|-------------| | email | ✅ | — | Your Grizzl-E Connect account email | | password | ✅ | — | Your Grizzl-E Connect account password | | pollInterval | ❌ | 30 | How often (in seconds) to poll for status updates (10–300) |

How It Works

The plugin authenticates with the Grizzl-E Connect cloud API using your account credentials. All chargers in your account are automatically discovered. The plugin polls the API on a configurable interval and pushes state changes to HomeKit immediately as they occur.

Chargers that are offline (not connected to the internet) show No Response in HomeKit rather than stale data.

Automations

Because each status is exposed as an individual occupancy sensor, you can build precise HomeKit automations:

Demand response (paired with homebridge-hilo-challenge):

  • When Hilo Reduction sensor opens → Turn off charger
  • When Hilo Reduction sensor closes → Turn on charger

Scheduled charging:

  • When Car Plugged In activates after 11 PM → Turn on charger
  • When Car Plugged In activates before 11 PM → Turn off charger (charge overnight instead)

Notifications:

  • When Suspended by Charger activates → send notification (unexpected pause)
  • When Charging activates → send notification (charging started)
  • When Finishing activates → send notification (charging complete)

Issues & Support

Please open an issue on GitHub.

Disclaimer

This plugin is an independent, community-developed project and is not affiliated with, endorsed by, or supported by United Chargers Inc. in any way. Grizzl-E™ is a trademark of United Chargers Inc. All product names and trademarks are the property of their respective owners.

This plugin is provided as-is, without any warranty of any kind, express or implied. Use it at your own risk. The authors accept no responsibility for any damage, data loss, or other issues arising from its use.