Skip to content

rajvantchahal/alert-sound-notify

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

alert-sound-notify

JavaScript library to play sound alerts

playAlert = require('alert-sound-notify')

playAlert() // Plays default alert "bottle"
playAlert('purr')
playAlert.volume(0.5)

See content.js for all available sounds.

Try it at

Install

$ npm install alert-sound-notify

Manual

Available Sounds

  • bottle (default)
  • glass
  • funk
  • morse
  • purr
  • tink
  • submarine

Adding Custom Sounds

playAlert.content['foo'] = ['https://bar.com/foo.mp3', 'https://bar.com/foo.ogg']
playAlert('foo')

How to use without NPM?

If your application isn't structured as a CommonJS package, you can download the distribution file;

$ wget https://raw.github.com/rajvantchahal/alert-sound-notify/master/dist/alert-sound-notify.js

And include it on your page:

<script src="alert-sound-notify.js"></script>
<script>
  playAlert('purr')
</script>

Accessing Audio API

playAlert.player.src()
// => foobar.mp3

playAlert.player.on('ended', function(){})

About

Play sound on notifications

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published