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-people-guest-mode

v0.9.9

Published

Homebridge plugin that provides details of who is in a Home

Downloads

82

Readme

homebridge-people-guest-mode

What This Plugin Is

This is a plugin for homebridge. It's a forked version of homebridge-people with a dummy switch called "Guest Mode" designed to override the "Anyone" presence sensor so that you can force presence without onboarding a new person.

Installation

Before installing this plugin, you should install Homebridge using the official instructions.

Install via Homebridge Config UI X

  1. Search for Homebridge People Guest Mode on the Plugins tab of Config UI X.
  2. Install the Homebridge People Guest Mode plugin and use the form to enter your configuration.

Manual Installation

  1. Install this plugin using: sudo npm install -g homebridge-people-guest-mode --unsafe-perm.
  2. Edit config.json manually to add your cameras. See below for instructions on that.

Manual Configuration

Most Important Parameters

  • platform: (Required) Must always be set to People.
  • name: (Required) Set the sensor name for display in the Home app.
  • target: (Required) IP address or hostname ping should hit to determine presence.

Config Example

{
  "platforms": [
    {
      "name": "Homebridge People Guest Mode",
      "people": [
        {
          "name": "Zack",
          "target": "zack-wagners-iphone.local"
        },
        {
          "name": "Ellen",
          "target": "10.0.0.77"
        }
      ],
      "platform": "People"
    }
  ]
}

Optional Parameters

  • threshold: Time in minutes until considered away. (Default: 15)
  • pingInterval: Time in milliseconds for how often to ping a device. -1 disables ping. (Default: 10000 or 10 seconds)
  • ignoreReEnterExitSeconds: Time in seconds to trigger state change if no re-enter/exit occurs. 0 will cause every enter/exit to trigger state change. (Default: 0)
  • motionTimeout: The number of seconds after triggering to reset the motion sensor. Set to 0 to disable resetting of motion trigger for MQTT or HTTP. (Default: 1)
  • webhookPort: Port to accept incoming webhooks. (Default: 51828)
  • cacheDirectory: ONLY RECOMMENDED FOR EXPERTS Directory to store cache data in. (Default: Homebridge's persistance directory)

Thanks

Thanks to:

  • PeteLawrence - for creating a great plugin, Homebrige People
  • nfarina - For creating the Homebridge dummy switch.