GithubHelp home page GithubHelp logo

midi-keyboard's Introduction

MIDI KEYBOARD

Build Status NPM Version License

JavaScript utility for MIDI keyboard

Keystation Mini 32

Installation

Node.js

npm install @mohayonao/midi-keyboard

Browser

Examples

Online examples (using Web MIDI API)

Run example with Node.js (using node-midi)

node examples/dump.js

API

MIDIKeyboard

  • constructor(deviceName: string = 'Keystation Mini 32')

Class methods

  • requestDeviceNames(): Promise<{ inputs: string[], outputs: string[] }>

Instance methods

Also implements methods from the interface @mohayonao/event-emitter.

  • open(): Promise<[ input, output ]>
  • close(): Promise<[ input, output ]>

Events

  • message
    • dataType: string
      • noteOn
      • noteOff
      • modulation
      • volume
      • pan
      • expression
      • sustain
      • pitchbend
    • deviceName: string
    • channel: number 0 - 15
    • value: number 0 - 127 ( control change )
    • noteNumber: number 0 - 127 ( noteOn / noteOff )
    • velocity: number 0 - 127 ( noteOn / noteOff )

Usage

Node.js

var MIDIKeyboard = require("@mohayonao/midi-keyboard");

Browser

<script src="/path/to/midi-keyboard.js"></script>

Common

var midiKey = new MIDIKeyboard("Keystation Mini 32");

midiKey.open();

midiKey.on("message", function(e) {
  console.log("dataType  : " + e.dataType);
  console.log("noteNumber: " + e.noteNumber);
  console.log("velocity  : " + e.velocity);
  console.log("value     : " + e.value);
  console.log("channel   : " + e.channel);
});  

License

MIT

midi-keyboard's People

Contributors

mohayonao avatar

Watchers

L3DLP avatar James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.