How I trigger the "System Bell" in nodejs

10,244

Solution 1

Output the BELL character (Unicode 0007) to the standard output.

console.log('\u0007');

References

Solution 2

The console.log('\u0007') didn't work for me running VSCode on windows 10. The following code did work:

import { exec } from 'child_process'
exec(`rundll32 user32.dll,MessageBeep`)
Share:
10,244
DebugXYZ
Author by

DebugXYZ

~

Updated on June 26, 2022

Comments

  • DebugXYZ
    DebugXYZ almost 2 years

    I'm running a long running custom nodejs script and would like to be notified when the script is completed.

    How do I make nodejs trigger the "System Bell"?