A simple library to notify users when ALSA properties change.
Currently the only implemented feature is triggering events when the volume changes.
The API is straightforward:
const alsa_monitor = require("alsa-monitor");
alsa_monitor.volume.on("change", () => {
console.log("Someone changed the volume!");
});