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
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
23 Stars
132 Commits
3 Forks
3 Watching
1 Branches
1 Contributors
Updated on 01 Feb 2024
JavaScript (100%)
Cumulative downloads
Total Downloads
Last day
-53.1%
61
Compared to previous day
Last week
20.8%
749
Compared to previous week
Last month
12.3%
2,825
Compared to previous month
Last year
31%
34,228
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
license file detected
Details
Reason
0 existing vulnerabilities detected
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
Found 0/30 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
no SAST tool detected
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 2024-11-25
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