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 🙏

© 2024 – Pkg Stats / Ryan Hefner

homebridge-http-lock-ultimate

v1.0.1

Published

This homebridge plugin exposes a web-based locking device to Apple's HomeKit. Using simple HTTP requests with post, body and header support, the plugin allows you to lock/unlock the device, i.e. Shelly 1 devices.

Downloads

9

Readme

homebridge-http-lock-ultimate

npm npm

Description

This homebridge plugin exposes a web-based locking device to Apple's HomeKit. Using simple HTTP requests with post, body and header support, the plugin allows you to lock/unlock the device, i.e. Shelly 1 devices.

Installation

  1. Install homebridge
  2. Install this plugin: npm install -g homebridge-http-lock-ultimate
  3. Update your config.json file

Configuration examples

Configuration example for a Shelly 1 device controlled via Get Requests in local network. Resets it's state to locked automatically after 5 Seconds

"accessories": [
     {
      "accessory": "HTTPLockUltimate",
      "name": "Front Door",
      "resetLock": "true",
      "resetLockTime": "5",
      "http_method": "GET",
      "openURL": "http://192.168.X.XX/relay/0?turn=on",
      "closeURL": "http://192.168.X.XX/relay/0?turn=off"
      }
]

This is a configuration example for a Shelly 1 device controlled via Post Requests to Shelly Cloud. Get's locked automatically after 5 Seconds.

"accessories": [
     {
      "accessory": "HTTPLockUltimate",
      "name": "Front Door",
      "autoLock": "true",
      "autoLockDelay": "5",
      "http_method": "POST",
      "openURL": "https:/your.server.address/device/relay/control/",
      "openHeader": {
          "Content-Type": "application/x-www-form-urlencoded"
      },
      "openBody": "turn=on&channel=0&id=XXXXXXX&auth_key=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
      "closeURL": "https://your.server.address/device/relay/control/",
      "closeHeader": {
          "Content-Type": "application/x-www-form-urlencoded"
      },
      "closeBody": "turn=off&channel=0&id=XXXXXXX&auth_key=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
      }
]

Core

| Key | Description | Default | | --- | --- | --- | | accessory | Must be HTTPLockUltimate | N/A | | name | Name to appear in the Home app | N/A | | openURL | URL to trigger unlock | N/A | | closeURL | URL to trigger lock | N/A |

Optional fields

| Key | Description | Default | | --- | --- | --- | | autoLock (optional) | Whether your lock should re-lock after being opened (closeURL Request gets triggered) | false | | autoLockDelay (optional) | Time (in seconds) until your lock will auto lock if enabled | 5 | | resetLock (optional) | If your lock is locking itself after opened, use this option to reset the state automatically (Will not call closeURL and is ignored when using autoLock) | false | | resetLockTime (optional) | Time (in seconds) until your lock will be set to locked | 5 |

Additional options

| Key | Description | Default | | --- | --- | --- | | timeout (optional) | Time (in seconds) until the accessory will be marked as Not Responding if it is unreachable | 5 | | http_method (optional) | HTTP method used to communicate with the device | GET | | openHeader | Request Header to send in unlock request | N/A | | openBody | JSON Body to send on open | N/A | | closeHeader | Request Header to send in lock request | N/A | | closeBody | JSON Body to send on close | N/A | | username (optional) | Username if HTTP authentication is enabled | N/A | | password (optional) | Password if HTTP authentication is enabled | N/A | | model (optional) | Appears under the Model field for the accessory | plugin | | serial (optional) | Appears under the Serial field for the accessory | version | | manufacturer (optional) | Appears under the Manufacturer field for the accessory | author | | firmware (optional) | Appears under the Firmware field for the accessory | version |