
Security News
Risky Biz Podcast: Making Reachability Analysis Work in Real-World Codebases
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
homebridge-analytics
Advanced tools
https://github.com/neilgupta/homebridge-analytics/
This is a plugin for homebridge to monitor how much you're using your HomeKit devices.
HomeKit does not expose any native way to get alerted when your devices turn on or off, so homebridge-analytics creates fake switches for you that will write their state to a sqlite database whenever they are turned on or off. You can setup HomeKit triggers to toggle the corresponding fake switch whenever one of your devices is turned on or off. This is a sad hack, but it's the best we can do with HomeKit so far. Once you've done the manual setup, you can then query the sqlite database to see your usage history.
npm install -g homebridge
npm install -g homebridge-analytics
"platforms": [
{
"platform": "Analytics",
"suffix" : "Analytics", // suffix to append to all your fake switch names (default: "Analytics")
"switchNames" : ["Kitchen", "Bar", "Living Room", "Foyer", "Closet", "Bedroom"]
}
]
Once you have this plugin configured and running with homebridge, you'll find the analytics.db
file in your homebridge's persist
directory. You can query this database via the node
repl like so:
var sqlite3 = require("sqlite3");
var db = new sqlite3.Database("path to analytics.db");
db.all("SELECT * FROM AccessoryUsage", function(err, rows) {
// do something with rows
});
The AccessoryUsage
table has 3 columns: name
(text), state
(int), updated
(timestamp).
FAQs
Homebridge plugin to track device usage
The npm package homebridge-analytics receives a total of 0 weekly downloads. As such, homebridge-analytics popularity was classified as not popular.
We found that homebridge-analytics demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.