UNPKG

lunchpad

Version:

interface for the novation launchpad mini, for node and the browser

15 lines (10 loc) 254 B
import initialize from '../src/lib/initializeNode' import drawing from './lib/drawing' async function run() { const lunchpad = await initialize() drawing(lunchpad) process.on('exit', () => { lunchpad.clearAll() }) } run()