├── .eslintignore ├── .gitignore ├── README.md ├── bower.json ├── dist ├── react-web-midi.js └── react-web-midi.min.js ├── example └── src │ ├── .gitignore │ ├── example.js │ ├── example.less │ └── index.html ├── gulpfile.js ├── lib ├── ReactWebMidi.js └── lib │ └── MidiScript.js ├── package.json ├── src ├── ReactWebMidi.js └── lib │ └── MidiScript.js └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erictherobot/react-web-midi/HEAD/.eslintignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erictherobot/react-web-midi/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erictherobot/react-web-midi/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erictherobot/react-web-midi/HEAD/bower.json -------------------------------------------------------------------------------- /dist/react-web-midi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erictherobot/react-web-midi/HEAD/dist/react-web-midi.js -------------------------------------------------------------------------------- /dist/react-web-midi.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erictherobot/react-web-midi/HEAD/dist/react-web-midi.min.js -------------------------------------------------------------------------------- /example/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erictherobot/react-web-midi/HEAD/example/src/.gitignore -------------------------------------------------------------------------------- /example/src/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erictherobot/react-web-midi/HEAD/example/src/example.js -------------------------------------------------------------------------------- /example/src/example.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erictherobot/react-web-midi/HEAD/example/src/example.less -------------------------------------------------------------------------------- /example/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erictherobot/react-web-midi/HEAD/example/src/index.html -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erictherobot/react-web-midi/HEAD/gulpfile.js -------------------------------------------------------------------------------- /lib/ReactWebMidi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erictherobot/react-web-midi/HEAD/lib/ReactWebMidi.js -------------------------------------------------------------------------------- /lib/lib/MidiScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erictherobot/react-web-midi/HEAD/lib/lib/MidiScript.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erictherobot/react-web-midi/HEAD/package.json -------------------------------------------------------------------------------- /src/ReactWebMidi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erictherobot/react-web-midi/HEAD/src/ReactWebMidi.js -------------------------------------------------------------------------------- /src/lib/MidiScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erictherobot/react-web-midi/HEAD/src/lib/MidiScript.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erictherobot/react-web-midi/HEAD/yarn.lock --------------------------------------------------------------------------------