A few snippets for working with the Web MIDI API within Atom
Go to Atom > File > Settings then search for MIDI in the Packages tab. Once found, install
$ cd ~/.atom/packages$ git clone https://github.com/njenkins/atom-webmidi-snippets.git$ cd atom-webmidi-snippets$ apm install$ apm link
navigator.requestMIDIAccess().then(${1:onSuccessCallback}, ${2:onErrorCallback});
${1:MIDIOutput}.send(${2:data}, ${3:timestamp});
${1:MIDIOutput}.clear();
${1:MIDIPort}.open();
${1:MIDIPort}.close();
Good catch. Let us know what about this package looks wrong to you, and we'll investigate right away.