How I trigger the “System Bell” in nodejs

后端 未结 2 544
野性不改
野性不改 2020-12-15 16:23

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\"?

相关标签:
2条回答
  • 2020-12-15 16:54

    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`)
    
    0 讨论(0)
  • 2020-12-15 17:15

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

    console.log('\u0007');
    

    References

    • ASCII/ISO 8859 (Latin-1) Table

    • Unicode Characters: 00000 to 000FF

    • The Open Group Base Specifications Issue 7: Portable Character Set

    • Programming with Unicode Documentation (unicodebook.pdf)

    • How a bullet turns into a beep – The Old New Thing

    • Unicode 10.0.0 Final Names List

    0 讨论(0)
提交回复
热议问题