1.1.1 • Published 6 years ago

mobx-music v1.1.1

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

Mobx Music

Play Music with Mobx

CircleCI NPM BundlePhobia

Install

  yarn add mobx-music
  # Or
  npm i mobx-music

Usage

const { instruments, playingNotes } = await getInstruments(["harmonica"]);
const instrument = instruments.get("harmonica");
instrument.play("A3", 500);
playingNotes.get("A3"); // true
setTimeout(() => {
  instrument.stop("A3");
}, 250);