This is a node wrapper for @midival/core library. It provides MIDI bindings to make library run in the Node.js environment.
For instructions on how to use MIDIVal, please check:
import { MIDIVal } from "@midival/core";
import { NodeMIDIAccess } from "@midival/node";
import * as midi from "midi";
MIDIVal.configureAccessObject(new NodeMIDIAccess(midi));
// The rest code should be the same as core examples.- Release compatible with
0.1.xversions of@midival/core.