Gathering detailed insights and metrics for inly
Gathering detailed insights and metrics for inly
Gathering detailed insights and metrics for inly
Gathering detailed insights and metrics for inly
npm install inly
Typescript
Module System
Min. Node Version
Node Version
NPM Version
63
Supply Chain
92.1
Quality
71.6
Maintenance
100
Vulnerability
97.9
License
JavaScript (100%)
Total Downloads
378,360
Last Day
17
Last Week
802
Last Month
2,790
Last Year
31,156
MIT License
22 Stars
132 Commits
3 Forks
2 Watchers
1 Branches
1 Contributors
Updated on Apr 26, 2025
Minified
Minified + Gzipped
Latest Version
5.0.1
Package Id
inly@5.0.1
Unpacked Size
16.54 kB
Size
5.09 kB
File Count
9
NPM Version
9.6.6
Node Version
20.11.0
Published on
Feb 01, 2024
Cumulative downloads
Total Downloads
Last Day
-54.1%
17
Compared to previous day
Last Week
35%
802
Compared to previous week
Last Month
38.2%
2,790
Compared to previous month
Last Year
14.8%
31,156
Compared to previous year
Extract .zip, .gz, .bz2, .tar, tar.gz, tar.bz2, .tgz, .tbz2 archives with emitter.
inly
could be installed global with
npm i inly -g
And used this way:
Usage: inly [filename]
Options:
-h, --help display this help and exit
-v, --version output version information and exit
inly
could be used localy. It will emit event on every packed/extracted file.
Good for making progress bars.
npm i inly --save
from
- path to archiveto
- path to directory where files would be stored.1const inly = require('inly'); 2const path = require('path'); 3const cwd = process.cwd(); 4const name = 'pipe.zip'; 5const to = `${cwd}/pipe-io`; 6const from = path.join(cwd, name); 7 8const extract = inly(from, to); 9 10extract.on('file', (name) => { 11 console.log(name); 12}); 13 14extract.on('progress', (percent) => { 15 console.log(`${percent}%`); 16}); 17 18extract.on('error', (error) => { 19 console.error(error); 20}); 21 22extract.on('end', () => { 23 console.log('done'); 24});
In case of starting example output should be similar to (but with additional events):
33%
67%
100%
done
MIT
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
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no SAST tool detected
Details
Reason
Found 0/30 approved changesets -- score normalized to 0
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
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