Sign Up for Free

RunKit +

Try any Node.js package right in your browser

This is a playground to test code. It runs a full Node.js environment and already has all of npm’s 1,000,000+ packages pre-installed, including web-midi-test with all npm packages installed. Try it out:

const WMT = require('web-midi-test'); const navigator = { requestMIDIAccess: WMT.requestMIDIAccess }; const source = new WMT.MidiSrc('VIRTUAL MIDI-In'); source.connect(); const list = [ [144, 60, 127], [128, 60, 0], [144, 64, 127], [128, 64, 0] ]; function nextMidi() { source.emit(list.shift()); if (list.length) setTimeout(nextMidi, 1000); } function onFail() { console.error('Oops...'); } function onSuccess(midiAccess) { midiAccess.inputs.forEach(function(port) { console.log(port.name + ' is open!'); port.onmidimessage = function(msg) { console.log(port.name + ': ' + msg.data); }; }); setTimeout(nextMidi, 1000); } navigator.requestMIDIAccess().then(onSuccess, onFail);

This service is provided by RunKit and is not affiliated with npm, Inc or the package authors.

web-midi-test v1.2.5

Fake Web MIDI API for testing Web MIDI applications

RunKit is a free, in-browser JavaScript dev environment for prototyping Node.js code, with every npm package installed. Sign up to share your code.
Sign Up for Free