I'm trying to make a custom motherboard beep with NodeJS.
Right now I'm using process.stderr.write("\007");
, which makes a default system beep on my motherboard (Windows 7 64).
But some programming languages have something like:
SoundBeep, Frequency, Duration
(AutoHotKey: https://www.autohotkey.com/docs/commands/SoundBeep.htm)
And apparently it's also possible in C++:
Beep(hertz, milli)
(How to make Motherboard Beep through C++ Code?)
Is setting custom system beep frequency and duration possible in NodeJS?