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

n8n-nodes-homebridge

v0.1.2

Published

n8n node for Homebridge API integration - control your HomeKit accessories and manage Homebridge server through n8n workflows

Readme

n8n-nodes-homebridge

An n8n community node that provides comprehensive integration with Homebridge API, allowing you to control your HomeKit accessories and manage your Homebridge server through n8n workflows.

n8n is a fair-code licensed workflow automation platform.

Installation
Operations
Credentials
Compatibility
Usage
Resources

Installation

Follow the installation guide in the n8n community nodes documentation.

  1. Go to Settings > Community Nodes.
  2. Select Install.
  3. Enter n8n-nodes-homebridge in Enter npm package name.
  4. Agree to the risks of using community nodes: select I understand the risks of installing unverified code from a public source.
  5. Select Install.

After installing the node, you can use it like any other node in n8n.

Operations

This node provides access to the complete Homebridge API with 10 resource categories and 70+ operations:

Authentication

  • Login with username/password (with optional 2FA)
  • Get authentication settings
  • Check authentication status
  • No-auth token (when authentication is disabled)

Server Management

  • Restart Homebridge server
  • Start/stop/restart child bridges
  • Get pairing information
  • Reset Homebridge accessory
  • Manage cached accessories
  • Network interface configuration

Configuration Editor

  • Get/update Homebridge config.json
  • Manage plugin configurations
  • Enable/disable plugins
  • Config backup management

Plugin Management

  • List installed plugins
  • Search NPM registry for plugins
  • Get plugin information and versions
  • Access config schemas and changelogs

Accessories Control

  • List all HomeKit accessories
  • Get/set accessory characteristics
  • Manage room layouts
  • Control smart home devices

User Management

  • Create, update, delete users
  • Change passwords
  • Setup/manage 2FA (OTP)
  • User permissions

System Status

  • CPU, RAM, network monitoring
  • System uptime information
  • Homebridge version details
  • Child bridge status

Platform Tools

  • Linux host control (restart/shutdown)
  • Docker container management
  • HB Service configuration
  • Log file management

Backup & Restore

  • Create and download backups
  • Scheduled backup management
  • Restore operations
  • System recovery

Setup Wizard

  • Initial setup operations
  • First user creation
  • Setup token generation

Credentials

To use this node, you need to configure the Homebridge API credentials:

  1. Server URL: Your Homebridge server URL (e.g., http://your-homebridge-server:8581)
  2. Username: Your Homebridge username
  3. Password: Your Homebridge password
  4. Two-Factor Code (optional): 2FA code if enabled

The node automatically handles JWT token authentication and renewal.

Compatibility

  • n8n version: 0.187.0 or later
  • Homebridge UI: Compatible with homebridge-config-ui-x
  • Node.js: 20.15.0 or later

Usage

Basic Example: Get System Status

// Get Homebridge status
{
  "resource": "status",
  "operation": "getHomebridgeStatus"
}

// Result: { "status": "up", "uptime": 123456, ... }

Advanced Example: Control Accessory

// Turn on a light
{
  "resource": "accessories", 
  "operation": "setCharacteristic",
  "uniqueId": "your-accessory-id",
  "characteristicType": "On",
  "value": "true"
}

Plugin Management

// Search for plugins
{
  "resource": "plugins",
  "operation": "search", 
  "query": "camera"
}

// Install/update plugin via config
{
  "resource": "config",
  "operation": "updatePluginConfig",
  "pluginName": "homebridge-camera-ffmpeg",
  "pluginConfig": [...]
}

Features

  • Complete API Coverage: All 70+ Homebridge API endpoints
  • Automatic Authentication: JWT token management
  • Type Safety: Full TypeScript implementation
  • Error Handling: Comprehensive error management
  • n8n Standards: Follows n8n best practices
  • Real-time Control: Direct HomeKit accessory control
  • Server Management: Full Homebridge administration

Resources

License

MIT