Make your terminal beep
Useful as an attention grabber. For example, when an error happens.
npm install beeperimport beeper from 'beeper';
await beeper();
// beep one time
await beeper(3);
// beep three times
await beeper('****-*-*');
// beep, beep, beep, beep, pause, beep, pause, beepIt will not beep if stdout is not TTY or if the user supplies the --no-beep flag.
Returns a Promise<void> that is resolved after the melody has ended.
Type: number
Default: 1
How many times you want it to beep.
Type: string
Construct your own melody by supplying a string of * for beep - for pause.
On systems where the beep sound duration exceeds 500ms (like macOS with certain alert sounds), beeps in melodies may overlap. This is a limitation of the ASCII bell character which provides no duration control.
