diff --git a/README.md b/README.md index 0cf3998..d991070 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,12 @@ # soundbox A super simple JS library for playing sound effects + +To use: + +```javascript +var soundbox = new SoundBox(); +soundbox.add("beep", "beep.wav"); + +// later.... +soundbox.play("beep"); +```