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-adguardhome

v2.0.1

Published

Homebridge plugin for AdGuard Home

Readme

verified-by-homebridge npm-version npm-total-downloads

Homebridge AdGuard Home

Display AdGuard Home as a lock or switch accessory.

Before Installing

  1. When updating from v1.5.1 to v1.6.0 you might need to re-add your accessories again in Home app.
  2. Version v2.x.x introduce breaking changes, after updating from v1.x.x make sure to do this:
    1. Remove any homebridge-adguardhome old accessories and add the new bridge and or accessory in Home app.
    2. Remove old homebridge-adguardhome from config.json. The old configuration should be inside accessories: [].
    3. Restart Homebridge and Homebridge Config UI X for changes to take effect and before adding new homebridge-adguardhome accesory from Homebridge Config UI X.

Requirements

  • Homebridge HomeKit support for the impatient.
  • AdGuard Home Network-wide ads & trackers blocking DNS server, or
  • GL-iNet router with integrated AdGuard Home (optional).

config.json example

{
  "bridge": {
    "name": "Homebridge",
    "username": "AA:AA:AA:AA:AA:AA",
    "port": 51826,
    "pin": "123-45-678"
  },
  "platforms": [
    {
      "accessories": [
        {
          "name": "AdGuard Home",
          "username": "ADGUARD_USERNAME",
          "password": "ADGUARD_PASSWORD",
          "https": false,
          "host": "192.168.1.1",
          "port": 3000,
          "glinetport": 80,
          "isGlinet": false,
          "interval": 5,
          "type": "LOCK",
          "autoOnTimer": 0,
          "stateLogging": false
        }
      ],
      "debug": false,
      "platform": "AdGuardHome"
    }
  ],
  "disabledPlugins": [],
  "accessories": []
}

Available Options

Accesories options:

  • "name": [Mandatory] The name that will appear in Home app. Please provide unique name for eact accessory. Default: AdGuard Home.
  • "username": [Mandatory] The AdGuard Home login username. Default: empty.
  • "password": [Mandatory] The AdGuard Home login password. Default: empty.
  • "https": [Optional] To use HTTPS or regular HTTP. Default: HTTP.
  • "host": [Optional] Hostname or IP of the AdGuard Home server. Default: localhost.
  • "port": [Optional] The AdGuard Home server port. Default: 3000.
  • "glinetport": [Optional] The Gl-iNet router port. Default: 80.
  • "isGlinet": [*Optional"] Plugins will use GL-iNet router API to connect to AdGuard Home server. However the status will not be reflected inside AdGuard Home web interface, instead will be reflected inside GL-iNet web interface. Default: false.
  • "interval": [Optional] How often the plugins check the servers status, in seconds . Default: 5.
  • "type": [Optional] Choose between SWITCH or LOCK. Default: empty.
  • "autoOnTimer": [Optional] Auto on timer, 0 timer will be ignored. Default: empty.
  • "stateLogging": [Optional] Display more log output. Default: false.

Platform options:

  • "debug": [Optional] Output debug log to Homebdirg log. Default: false.
  • "platform": [Mandatory] Default: "AdGuardHome".

Or you can use use Homebridge Config UI X.