Gathering detailed insights and metrics for jzz-midi-gear
Gathering detailed insights and metrics for jzz-midi-gear
Gathering detailed insights and metrics for jzz-midi-gear
Gathering detailed insights and metrics for jzz-midi-gear
npm install jzz-midi-gear
Typescript
Module System
Node Version
NPM Version
72.9
Supply Chain
98.8
Quality
79.8
Maintenance
100
Vulnerability
100
License
JavaScript (95.93%)
HTML (4.07%)
Total Downloads
10,152
Last Day
1
Last Week
9
Last Month
70
Last Year
1,769
17 Stars
91 Commits
7 Forks
3 Watching
1 Branches
5 Contributors
Latest Version
1.3.6
Package Id
jzz-midi-gear@1.3.6
Unpacked Size
37.47 kB
Size
12.18 kB
File Count
6
NPM Version
8.4.1
Node Version
20.12.1
Publised On
09 Sept 2024
Cumulative downloads
Total Downloads
Last day
0%
1
Compared to previous day
Last week
-66.7%
9
Compared to previous week
Last month
-22.2%
70
Compared to previous month
Last year
-7.1%
1,769
Compared to previous year
1
6
See the online demo (requires a MIDI insrument connected to your computer).
npm install jzz-midi-gear
or yarn add jzz-midi-gear
or get the full development version and minified scripts from GitHub
1<script src="JZZ.js"></script> 2<script src="JZZ.midi.Gear.js"></script> 3//...
1<script src="https://cdn.jsdelivr.net/npm/jzz"></script> 2<script src="https://cdn.jsdelivr.net/npm/jzz-midi-gear"></script> 3//...
1<script src="https://unpkg.com/jzz"></script> 2<script src="https://unpkg.com/jzz-midi-gear"></script> 3//...
1var JZZ = require('jzz'); 2require('jzz-midi-gear')(JZZ); 3//...
1import { JZZ } from 'jzz'; 2import { Gear } from 'jzz-midi-gear'; 3Gear(JZZ); 4//...
1require(['JZZ', 'JZZ.midi.Gear'], function(JZZ, gear) { 2 // ... 3});
1// start the MIDI engine: 2JZZ({sysex:true}).and(function() { 3 var inputs = this.info().inputs; 4 var outputs = this.info().outputs; 5 // enable message handlers on all MIDI-In ports: 6 for (var i in inputs) this.openMidiIn(i).connect(function(msg) { 7 if (msg.isIdResponse()) { 8 var gear = msg.gearInfo(); 9 console.log('ID Response SysEx received:'); 10 console.log(' port: ' + this.name()); 11 console.log(' message: ' + msg); 12 console.log(' brand: ' + gear.brand); 13 console.log(' model: ' + gear.model); 14 console.log(' device: ' + gear.descr); 15 } 16 }); 17 // send the ID Request SysEx to all MIDI-Out ports: 18 for (var i in outputs) this.openMidiOut(i).sxIdRequest(); 19}); 20// ... 21// in Node.js - don't forget to stop the engine when done: 22JZZ().wait(500).close();
ID Response SysEx received:
port: Roland RD
message: f0 7e 10 06 02 41 2b 02 00 00 00 01 00 00 f7
brand: Roland
model: RD-700GX
device: Digital Stage Piano
If JZZ.midi.Gear cannot correctly identify your device, please help us fix the script:
or,
https://github.com/jazz-soft/JZZ-midi-Gear.git
npm install
data/models.txt
and/or data/vendors.txt
grunt
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
no dangerous workflow patterns detected
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
Found 1/29 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2024-12-16
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More