alsa-monitor
v0.3.2
Published
Monitor ALSA things with node.js
Downloads
1
Readme
ALSA Monitoring
A simple library to notify users when ALSA properties change.
Currently
Currently the only implemented feature is triggering events when the volume changes.
API
The API is straightforward:
const alsa_monitor = require("alsa-monitor");
alsa_monitor.volume.on("change", () => {
console.log("Someone changed the volume!");
});