Interacting with a Novation Launchpad from your browser with the web MIDI API
npm install launchpad-webmidiInteracting with a Novation Launchpad from your browser with the web MIDI API.
This library is based on launchpad-mini library for Node.
Node modules have been replaced with ES modules, Node midi replaced with Web MIDI API, and the connection workflow has been adapted, but most of the original library API works as usual. You can use launchpad-mini doc as a guide until the doc here will be completed.
- Install via yarn:
``bash`
yarn add launchpad-webmidi
- Install via npm:
`bash`
npm install launchpad-webmidi
Currenly we use rollup to generate several versions of launchpad-webmidi:
- A self-executing function, suitable for inclusion as a
`
You can see the full example in examples/basic-with-esm.html and a slightly more complex one on examples/switch-color-with-esm.html.
`html``
You can see the full example in examples/basic-with-umd.html and a slightly more complex one on examples/switch-color-with-umd.html.