Gathering detailed insights and metrics for tty-aware-progress
Gathering detailed insights and metrics for tty-aware-progress
Gathering detailed insights and metrics for tty-aware-progress
Gathering detailed insights and metrics for tty-aware-progress
npm install tty-aware-progress
Typescript
Module System
Node Version
NPM Version
TypeScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
1 Stars
11 Commits
1 Branches
1 Contributors
Updated on Apr 02, 2019
Latest Version
1.0.4
Package Id
tty-aware-progress@1.0.4
Unpacked Size
157.96 kB
Size
58.99 kB
File Count
11
NPM Version
6.4.1
Node Version
10.0.0
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
1
6
The excellent progress
package from npm will unfortunately ignore non-TTY environments like CI (circle-ci, travis, etc). This package uses progress
, but in case of non-TTY, the progress will be output as rolling logs.
1npm install tty-aware-progress 2# or 3yarn add tty-aware-progress
tty-aware-progress
will only need the total number of expected ticks like shown below. It returns a function that emits progress.
1import createProgress from 'tty-aware-progress'; 2 3const progress = createProgress(100); 4for (var i = 0; i < 100; i++) { 5 progress(); 6} 7 8// OR 9 10const progress = createProgress(100); 11for (var i = 0; i < 10; i++) { 12 progress(10); 13}
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 0/11 approved changesets -- score normalized to 0
Reason
no SAST tool detected
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
61 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
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