launchpad-app
v0.5.0-alpha.3
Published
A simple library for creating applications using the Novation Launchpad
Downloads
2
Readme
launchpad-app
A simple library for creating applications using the Novation Launchpad.
Installation
First, download and install the Launchpad drivers from the Novation website:
- http://global.novationmusic.com/support/product-downloads?product=Launchpad
Then, use npm to install the dependencies and to add them to your package.json file:
npm install launchpad-app --saveUsage
Add the following at the top of your main javascript file:
var App = require('launchpad-app');Create a Launchpad instance:
var launchpad = new App.Launchpad();Call the launchpad-app constructor with your Launchpad instance and listeners:
App(launchpad, {
start: function() { ... },
key: function() { ... }
});