site_opytex/theme/node_modules/beeper
Bertrand Benjamin 5b475a2f38 Feat: import work and verify compilation 2020-06-24 08:26:04 +02:00
..
index.js Feat: import work and verify compilation 2020-06-24 08:26:04 +02:00
license Feat: import work and verify compilation 2020-06-24 08:26:04 +02:00
package.json Feat: import work and verify compilation 2020-06-24 08:26:04 +02:00
readme.md Feat: import work and verify compilation 2020-06-24 08:26:04 +02:00

readme.md

beeper Build Status

Make your terminal beep

Useful as an attention grabber e.g. when an error happens.

Install

$ npm install --save beeper

Usage

var beeper = require('beeper');

beeper();
// beep one time

beeper(3);
// beep three times

beeper('****-*-*');
// beep, beep, beep, beep, pause, beep, pause, beep

API

It will not beep if stdout is not TTY or if the user supplies the --no-beep flag.

beeper([count|melody], [callback])

count

Type: number
Default: 1

How many times you want it to beep.

melody

Type: string

Construct your own melody by supplying a string of * for beep - for pause.

License

MIT © Sindre Sorhus