-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from midival/release/0.1.0
release: 0.1.0
- Loading branch information
Showing
9 changed files
with
744 additions
and
692 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,4 @@ dist/ | |
node_modules/ | ||
docs/ | ||
coverage/ | ||
yarn-error.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# @midival/node | ||
|
||
This is a node wrapper for `@midial/core` library. It provides MIDI bindings to make library run in the Node.js environment. | ||
|
||
For instructions on how to use MIDIVal, please check: | ||
- [the official documentation](https://midival.github.io/) | ||
- [`@midival/core` repository](https://github.com/midival/core) | ||
|
||
|
||
## How to setup MIDIVal in Node 1-0-1 | ||
```ts | ||
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. | ||
|
||
``` | ||
|
||
|
||
# Releases | ||
## [0.1.0] | ||
- Release compatible with `0.1.x` versions of `@midival/core`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.