MIDI Button is a simple way to interface with MIDI Controllers.
$ npm install midibutton -S
const MIDIButton = require('midibutton')
let pad = new MIDIButton(0)
pad.on('discoverKey', key => {
key.on('down', () => {
console.log('Key down', key)
})
})
pad.on('discoverKnob', knob => {
knob.on('change', () => {
console.log('Knob change', knob)
})
})
Further documentation can be found in the documentation directory in the repo.
MIT