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

iobroker.frigate

v2.1.3

Published

Adapter for Frigate

Readme

Logo

ioBroker.frigate

NPM version Downloads Number of Installations Current version in stable repository

NPM

Tests: Test and Release

This adapter uses Sentry libraries to automatically report exceptions and code errors to the developers. For more details and for information on how to disable the error reporting, see Sentry-Plugin Documentation! Sentry reporting is used starting with js-controller 3.0.

frigate adapter for ioBroker

Adapter for Frigate Tool Frigate Video

Setup

  • Enter Frigate url e.g. localhost:5000 or 192.168.178.2:5000
  • Enter MQTT port: 1883 from the frigate config
  • Enter host or ip of iobroker system in the frigate config under
mqtt:
    host: ioBrokerIP
    port: ioBrokerPort

After Starting Frigate and the Adapter, you should see a new client connected in the log.

Usage

stats

General Information about the system and cameras.

remotes

frigate.0.remote.pauseNotifications - Pause Notification for all Cameras.

events

Last Event with before and after information.

frigate.0.events.history - History of the last X events.

History event has a thumbnail of the event and URL to the snapshot and clip.

camera_name

Status and settings of the camera.

Change states to change the settings of the camera.

Detailed Information about all states

  • frigate.0.camera_name.motion - Whether camera_name is currently detecting motion. Expected values are ON and OFF. NOTE: After motion is initially detected, ON will be set until no motion has been detected for mqtt_off_delay seconds (30 by default).
  • frigate.0.camera_name.person_snapshot - Publishes a jpeg encoded frame of the detected object type. When the object is no longer detected, the highest confidence image is published or the original image is published again. The height and crop of snapshots can be configured in the config.
  • frigate.0.camera_name.history - Event history of the camera.
  • frigate.0.camera_name.remote.notificationText - custom notification text for the camera.
  • frigate.0.camera_name.remote.notificationMinScore - custom notification min score for the camera.
  • frigate.0.camera_name.remote.pauseNotifications - pause notification for the camera.
  • frigate.0.camera_name.remote.ptz - send ptz commands https://docs.frigate.video/integrations/mqtt/#frigatecamera_nameptz

Notifications

The adapter can send snapshots and clips from events and object detection to instances like telegram, pushover and signal-cbm.

You can specify multiple instances or users to send snapshots or clips.

Activate notifications in the settings to receive snapshots or clips.

For Event can enter a minimum score before sending. 0 = Disabled.

Clips are sent 5 seconds (Instance settings) after the event ends.

You can enter custom notification text with placeholder {{source}} {{type}} erkannt {{status}} {{score}} {{state}}.

Integrate in vis

You can integrate snapshots and clips in the vis:

Snapshot:

  • Add a String img src and use as Object ID: frigate.0.camera_name.person_snapshot
  • Add a String img src and use as Object ID: frigate.0.events.history.01.thumbnail

Clips:

  • Add a HTML add as HTML:
<video width="100%" height="auto" src="{frigate.0.events.history.01.webclip}" autoplay muted>
</video>

Number of persons:

  • frigate.0.camera.person

Event with Person:

  • frigate.0.events.after.label = person

Running frigate docker on different host

If you want to send via telegram and co. the clips and snapshots to the iobroker host, the frigate instance and telegram (or other) instance must run on the same host, as frigate uses disk to store the clips and snapshots.

Discussion and questions

https://forum.iobroker.net/topic/64928/frigate-adapter-für-iobroker

Changelog

2.1.3 (2026-03-19)

  • (@GermanBluefox) Remove wrong log message about missing docker
  • (@GermanBluefox) Send on connection the topic onConnect to receive camera_activity topic

2.1.2 (2026-03-14)

  • (@GermanBluefox) Corrected the writing of ON/OFF states

2.1.1 (2026-03-08)

  • (@GermanBluefox) Added threshold for person detection in notifications

2.1.0 (2026-03-07)

  • (@GermanBluefox) Code optimizations and refactoring
  • (copilot) missing jsonConfig sizes have been added
  • (mcm1957) dependencies have been updated

2.0.2 (2026-02-16)

  • (@GermanBluefox) Removed gpu_usages

License

MIT License

Copyright (c) 2026 iobroker-community-adapters [email protected]
Copyright (c) 2024-2025 TA2k [email protected]

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.