Gathering detailed insights and metrics for jzz-synth-tiny
Gathering detailed insights and metrics for jzz-synth-tiny
Gathering detailed insights and metrics for jzz-synth-tiny
Gathering detailed insights and metrics for jzz-synth-tiny
npm install jzz-synth-tiny
Typescript
Module System
Node Version
NPM Version
71.7
Supply Chain
99.4
Quality
78.5
Maintenance
100
Vulnerability
100
License
JavaScript (93.02%)
HTML (6.98%)
Total Downloads
24,276
Last Day
3
Last Week
62
Last Month
315
Last Year
6,407
23 Stars
87 Commits
3 Forks
1 Watchers
1 Branches
2 Contributors
Updated on Mar 30, 2025
Minified
Minified + Gzipped
Latest Version
1.4.3
Package Id
jzz-synth-tiny@1.4.3
Unpacked Size
48.81 kB
Size
11.07 kB
File Count
4
NPM Version
8.4.1
Node Version
20.12.1
Published on
Mar 30, 2025
Cumulative downloads
Total Downloads
Last Day
-50%
3
Compared to previous day
Last Week
10.7%
62
Compared to previous week
Last Month
-57.5%
315
Compared to previous month
Last Year
31.5%
6,407
Compared to previous year
Tiny Web-Audio GM Synthesizer (g200kg/webaudio-tinysynth) wrapped for JZZ.js
Includes all General MIDI instruments, plus, you can load your own sounds.
Please check the demo...
npm install jzz-synth-tiny
or yarn add jzz-synth-tiny
or get the full development version and minified scripts from GitHub
1<script src="JZZ.js"></script> 2<script src="JZZ.synth.Tiny.js"></script> 3//...
1<script src="https://cdn.jsdelivr.net/npm/jzz"></script> 2<script src="https://cdn.jsdelivr.net/npm/jzz-synth-tiny"></script> 3//...
1<script src="https://unpkg.com/jzz"></script> 2<script src="https://unpkg.com/jzz-synth-tiny"></script> 3//...
1var JZZ = require('jzz'); 2require('jzz-synth-tiny')(JZZ); 3//...
1import { JZZ } from 'jzz'; 2import { Tiny } from 'jzz-synth-tiny'; 3Tiny(JZZ); 4//...
1require(['JZZ', 'JZZ.synth.Tiny'], function(JZZ, dummy) { 2 // ... 3});
1JZZ.synth.Tiny().noteOn(0, 'C5', 127) 2 .wait(500).noteOn(0, 'E5', 127) 3 .wait(500).noteOn(0, 'G5', 127) 4 .wait(500).noteOff(0, 'C5').noteOff(0, 'E5').noteOff(0, 'G5');
1JZZ.synth.Tiny.register('Web Audio'); 2 3JZZ().openMidiOut('Web Audio').noteOn(0, 'C5', 127) 4 .wait(500).noteOn(0, 'E5', 127) 5 .wait(500).noteOn(0, 'G5', 127) 6 .wait(500).noteOff(0, 'C5').noteOff(0, 'E5').noteOff(0, 'G5');
To make vitual port visible by Web MIDI API, please check the instructions at https://github.com/jazz-soft/JZZ#virtual-midi-ports
1var synth = JZZ.synth.Tiny();
2var tuba = synth.getSynth(58); // tuba
3var drum = synth.getSynth(36, true); // bass drum
4synth.setSynth(0, tuba); // set tuba to program 0 (it was piano originally);
5synth.setSynth(35, drum, true); // set bass drum to percussion instrument 35;
See more details at https://github.com/g200kg/webaudio-tinysynth#timbre-object-structure
1const WAAPI = require('node-web-audio-api'); 2const JZZ = require('jzz'); 3require('jzz-synth-tiny')(JZZ); 4 5global.window = { AudioContext: WAAPI.AudioContext }; 6 7JZZ.synth.Tiny() 8 .or(function() { console.log('Cannot open MIDI-Out!\n'/* + this.err() */); }) 9 .note(0, 'C5', 127, 500).wait(500) 10 .note(0, 'E5', 127, 500).wait(500) 11 .note(0, 'G5', 127, 500).wait(500) 12 .note(9, 'C6', 127, 500).wait(500) 13 .and(function() { JZZ.lib.closeAudioContext(); });
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
Found 0/30 approved changesets -- 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 SAST tool detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
license file not detected
Details
Reason
security policy file not detected
Details
Reason
branch protection not enabled on development/release branches
Details
Score
Last Scanned on 2025-06-30
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