Skip to content

Commit

Permalink
Change : readme
Browse files Browse the repository at this point in the history
  • Loading branch information
David-Vandensteen committed Feb 24, 2022
1 parent 170a196 commit df2adf7
Showing 1 changed file with 42 additions and 1 deletion.
43 changes: 42 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,42 @@
# midi-cmd
# midi-cmd

Command line utlity to send a midi control change message to a midi interface.
This can help with debugging or configuring a midi environment.

I provide a Windows (x64) binary which is instantly usable in releases section.

If you use the NodeJS dev project on Windows, you need to have the windows build tools.

***Not tested on OSX & Linux***

## Set Up
```cmd
npm i
```

## Usage
***Help:***
```
node src\index.js --help
```

***Available midi interfaces:***
```
node src\index.js --list
```

***example:***
Send a midi control change on midi interface 1 channel 73 with the value 64
```
node src\index.js -i 1 -c 73 -v 64
```

## Development
***lint***
```
npm run lint
```
***build a binary for Windows***
```
npm run package
```

0 comments on commit df2adf7

Please sign in to comment.