import * as MIDI from 'midicube'; MIDI.loadPlugin({ // this only has piano. // for other sounds install the MIDI.js // soundfonts somewhere. soundfontUrl: "./examples/soundfont/", onerror: console.warn, onsuccess: () => { MIDI.noteOn(0, 60, 0); } }); Or as a script ta...