https://github.com/pqml/midigui
A controller and GUI for the Web MIDI API
https://github.com/pqml/midigui
Last synced: 2 months ago
JSON representation
A controller and GUI for the Web MIDI API
- Host: GitHub
- URL: https://github.com/pqml/midigui
- Owner: pqml
- License: mit
- Created: 2017-03-27T02:21:00.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-03-27T02:23:26.000Z (about 8 years ago)
- Last Synced: 2024-12-26T16:25:17.650Z (4 months ago)
- Language: JavaScript
- Size: 193 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# midigui
:mag_right::musical_keyboard: A controller and gui for the Web MIDI API

#### :globe_with_meridians: Example available on [http://pqml.github.io/midigui/](http://pqml.github.io/midigui/) :globe_with_meridians:
### Installation & Usage
##### Installation from npm
```sh
# using npm
$ npm install --save midigui# or using yarn
$ yarn add midigui
```##### Usage with a module bundler
```js
// using ES6 module
import midigui from 'midigui'// using CommonJS module
var midigui = require('midigui')
```##### Usage from a browser
```html
```
### Example
```js
const midigui = require('midigui')
const controller = midigui()
.add('pitch')
.add('attack')
.add('release')controller.on('pitch', value => console.log(value))
```
### License
MIT.