Gathering detailed insights and metrics for jzz-gui-player
Gathering detailed insights and metrics for jzz-gui-player
Gathering detailed insights and metrics for jzz-gui-player
Gathering detailed insights and metrics for jzz-gui-player
npm install jzz-gui-player
Typescript
Module System
Node Version
NPM Version
JavaScript (86.82%)
HTML (13.18%)
Total Downloads
33,047
Last Day
30
Last Week
116
Last Month
402
Last Year
6,480
MIT License
14 Stars
168 Commits
2 Watchers
1 Branches
2 Contributors
Updated on May 07, 2025
Minified
Minified + Gzipped
Latest Version
1.7.8
Package Id
jzz-gui-player@1.7.8
Unpacked Size
35.06 kB
Size
8.52 kB
File Count
6
NPM Version
8.4.1
Node Version
20.12.1
Published on
May 07, 2025
Cumulative downloads
Total Downloads
Last Day
500%
30
Compared to previous day
Last Week
2.7%
116
Compared to previous week
Last Month
56.4%
402
Compared to previous month
Last Year
3.5%
6,480
Compared to previous year
2
Supports MIDI 1.0 SMF and MIDI 2.0 Clips
See the demo...
npm install jzz-gui-player --save
or yarn add jzz-gui-player
or get the full development version and minified scripts from GitHub
https://github.com/jazz-soft/polymer-midi-player
https://github.com/jazz-soft/react-midi-player
1<script src="JZZ.js"></script> 2<script src="JZZ.midi.SMF.js"></script> 3<script src="JZZ.gui.Player.js"></script> 4//...
1<script src="https://cdn.jsdelivr.net/npm/jzz"></script> 2<script src="https://cdn.jsdelivr.net/npm/jzz-midi-smf"></script> 3<script src="https://cdn.jsdelivr.net/npm/jzz-gui-player"></script> 4//...
1<script src="https://unpkg.com/jzz"></script> 2<script src="https://unpkg.com/jzz-midi-smf"></script> 3<script src="https://unpkg.com/jzz-gui-player"></script> 4//...
1var JZZ = require('jzz'); 2require('jzz-midi-smf')(JZZ); 3require('jzz-gui-player')(JZZ); 4//...
1import { JZZ } from 'jzz'; 2import { SMF } from 'jzz-midi-smf'; 3import { Player } from 'jzz-gui-player'; 4SMF(JZZ); 5Player(JZZ); 6//...
1require(['JZZ', 'JZZ.midi.SMF', 'JZZ.gui.Player'], function(JZZ, smf, player) { 2 // ... 3});
Please check the API Reference !
1<div id=player></div> 2 3<script> 4 var player = new JZZ.gui.Player('player'); 5 var data = ... // load MIDI file as a string or a buffer 6 player.load(new JZZ.MIDI.SMF(data)); // MIDI 1.0, or 7 // player.load(new JZZ.MIDI.Clip(data)); // MIDI 2.0 8 player.play(); 9</script>
Please visit https://jazz-soft.net for more information.
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
Found 5/24 approved changesets -- score normalized to 2
Reason
2 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 1
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
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 2025-05-05
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