Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Jzz | 457 | 25 | 28 | 6 days ago | 151 | July 04, 2022 | 10 | mit | JavaScript | |
MIDI library for Node.js and web-browsers | ||||||||||
64klang | 228 | a year ago | 1 | mit | C++ | |||||
Official 64klang repository | ||||||||||
Setbfree | 163 | 23 days ago | 16 | gpl-2.0 | C | |||||
DSP tonewheel organ | ||||||||||
Ws Ldn 4 | 33 | 7 years ago | C | |||||||
Interactive DIY Synth / ARM baremetal workshop (London, 23-24 January 2016) | ||||||||||
Beatr | 26 | 9 years ago | Clojure | |||||||
Overtone beat box | ||||||||||
Thundersnow | 14 | 5 months ago | Common Lisp | |||||||
Lisp/McCLIM-based digital audio workstation and live coding laboratory. | ||||||||||
Granular Synth | 12 | 5 years ago | SuperCollider | |||||||
A simple granular synth GUI, with a handy time/frequency graph. | ||||||||||
Minimoog | 9 | 4 years ago | C++ | |||||||
Rebuilding the Minimoog as a JUCE GUI and Soft Synth | ||||||||||
Ws Ldn 7 | 6 | 7 years ago | apache-2.0 | C | ||||||
Faust Vst Qt | 6 | 7 years ago | lgpl-3.0 | C++ | ||||||
JZZ.js allows sending, receiving and playing MIDI messages in Node.js and all major browsers in Linux, MacOS and Windows. Some features are available on iOS and Android devices.
JZZ.js enables Web MIDI API in Node.js and those browsers that don't support it, and provides additional functionality to make developer's life easier.
For the best user experience, it's highly RECOMMENDED (though not required) to install the latest version of Jazz-Plugin and browser extensions from Chrome Web Store or Mozilla Add-ons or Apple App Store.
npm install jzz --save
or yarn add jzz
or get the full development version and minified scripts from Github
Note: in the (unlikely) case you get into trouble installing the
midi-test module,
that requires special system configuration,
you can safely remove it from the devDependencies
by running npm remove midi-test --save-dev
.
<script src="JZZ.js"></script>
//...
<script src="https://cdn.jsdelivr.net/npm/jzz"></script> // the latest version, or
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script> // any particular version
//...
<script src="https://unpkg.com/jzz"></script> // the latest version, or
<script src="https://unpkg.com/[email protected]"></script> // any particular version
//...
var JZZ = require('jzz');
//...
import { JZZ } from 'jzz';
//...
require(['JZZ'], function(JZZ) {
//...
});
var navigator = require('jzz');
navigator.requestMIDIAccess().then(onSuccess, onFail);
// ...
navigator.close(); // This will close MIDI inputs,
// otherwise Node.js will wait for MIDI input forever.
// In browsers the funcion is neither defined nor required.
JZZ().or('Cannot start MIDI engine!')
.openMidiOut().or('Cannot open MIDI Out port!')
.wait(500).send([0x90,60,127]) // note on
.wait(500).send([0x80,60,0]); // note off
JZZ().openMidiIn().or('Cannot open MIDI In port!')
.and(function() { console.log('MIDI-In: ', this.name()); })
.connect(function(msg) { console.log(msg.toString()); })
.wait(10000).close();
var input = JZZ().openMidiIn();
var output = JZZ().openMidiOut();
var delay = JZZ.Widget({ _receive: function(msg) { this.wait(500).emit(msg); }});
input.connect(delay);
delay.connect(output);
// All calls below will do the same job:
port.send([0x90, 61, 127]).wait(500).send([0x80, 61, 0]); // arrays
port.send(0x90, 61, 127).wait(500).send(0x80, 61, 0); // comma-separated
port.send(0x90, 'C#5', 127).wait(500).send(0x80, 'Db5', 0); // note names
port.noteOn(0, 'C#5', 127).wait(500).noteOff(0, 'B##4'); // helper functions
port.note(0, 'C#5', 127, 500); // another shortcut
port.ch(0).noteOn('C#5').wait(500).noteOff('C#5'); // using channels
port.ch(0).note('C#5', 127, 500); // using channels
// in the environments that support async/await:
async function playNote() {
var midi = await JZZ();
var port = await midi.openMidiOut();
await port.noteOn(0, 'C5', 127);
await port.wait(500);
await port.noteOff(0, 'C5');
await port.close();
console.log('done!');
}
// or:
async function playAnotherNote() {
var port = await JZZ().openMidiOut();
await port.noteOn(0, 'C5', 127).wait(500).noteOff(0, 'C5').close();
console.log('done!');
}
var logger = JZZ.Widget({ _receive: function(msg) { console.log(msg.toString()); }});
JZZ.addMidiOut('Console Logger', logger);
// now it can be used as a port:
var port = JZZ().openMidiOut('Console Logger');
// ...
// substitute the native MIDIAccess
// to make virtual ports visible to the Web MIDI API code:
navigator.requestMIDIAccess = JZZ.requestMIDIAccess;
JZZ.MIDI.freq('A5'); // => 440
JZZ.MIDI.freq(69); // => 440
JZZ.MIDI.freq(69.5); // => 452.8929841231365
// from frequency:
JZZ.MIDI.midi(440); // => 69
JZZ.MIDI.midi(450); // => 69.38905773230853
// or from name:
JZZ.MIDI.midi('A5'); // => 69
Check the Getting Started page and the API reference for more information...