Bachir Soussi Chiadmi cefd1c2ad0 updated sys and created publi 6 anni fa
..
index.js cefd1c2ad0 updated sys and created publi 6 anni fa
license cefd1c2ad0 updated sys and created publi 6 anni fa
package.json cefd1c2ad0 updated sys and created publi 6 anni fa
readme.md cefd1c2ad0 updated sys and created publi 6 anni fa

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