Home

Awesome

SoundEffectManager

Is just that. It's a simple sound effect manager for playing sounds using the awesome HTML 5 Web Audio API.

If you think I'm talking about <audio> tags, go read this: http://www.html5rocks.com/en/tutorials/webaudio/intro/

It's significantly better than <audio> tags for several reasons:

<!-- starthide -->

Part of the Ampersand.js toolkit for building clientside applications.

<!-- endhide -->

Installing

npm install sound-effect-manager

Using it

// just init the sound effect manager
var SoundEffectManager = require('sound-effect-manager');

var sm = new SoundEffectManager();

// load some files by passing it a url and a name
sm.loadFile('taps.mp3', 'taps');
sm.loadFile('rocket.wav', 'rocket');

// then play the sounds like so:
sm.play('rocket');

// or play a sound in looping mode:
sm.play('taps', true);

// and to stop a loop:
sm.stop('taps');

// that's it!

License

MIT

Credits

Built (rather hastily) by @HenrikJoreteg for use in And Bang. Which you should totally check out if you work with a team, for anything, ever.