Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
fritz-callmonitor
Advanced tools
Provides a node.js wrapper for the call monitor api of the AVM Fritz!Box. Written in TypeScript.
Provides a node.js wrapper for the call monitor api of the AVM Fritz!Box. Written in TypeScript.
Installation: npm install fritz-callmonitor
Usage with TypeScript:
Copy the fritz-callmonitor.d.ts
from node_modules/fritz-callmonitor
to your TypeScript directory and make a reference using ///
.
The network API is disabled by default. To use this, call #96*5*
on a phone which is managed by a FRITZ!Box.
Sample:
"use strict";
import fb = require("./CallMonitor");
var cm = new fb.CallMonitor("192.168.178.1", 1012);
cm.on("ring", rr =>
{
console.dir(rr);
console.log(rr.caller + " calling...");
});
cm.on("call", rr => console.dir(rr));
cm.on("pickup", rr => console.dir(rr));
cm.on("hangUp", rr => console.dir(rr));
cm.on("close", () => console.log("Connection closed."));
cm.on("connect", () => console.log("Connected to device."));
cm.on("error", err => console.dir(err));
cm.connect();
FAQs
Provides a TypeScript Node.js wrapper for the call monitor api of the AVM Fritz!Box.
The npm package fritz-callmonitor receives a total of 4 weekly downloads. As such, fritz-callmonitor popularity was classified as not popular.
We found that fritz-callmonitor 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.