Gathering detailed insights and metrics for istanbul-lib-report
Gathering detailed insights and metrics for istanbul-lib-report
Gathering detailed insights and metrics for istanbul-lib-report
Gathering detailed insights and metrics for istanbul-lib-report
@types/istanbul-lib-report
TypeScript definitions for istanbul-lib-report
@start/plugin-lib-istanbul
💯 Collect, report and check code coverage using Istanbul
@bizantine/istanbul-lib-report
Base reporting library for bizantine
@deltacov/istanbul-lib-report
Base reporting library for deltacov
monorepo containing the various nuts and bolts that facilitate istanbul.js test instrumentation
npm install istanbul-lib-report
Typescript
Module System
Min. Node Version
Node Version
NPM Version
99.1
Supply Chain
82.2
Quality
81
Maintenance
100
Vulnerability
100
License
istanbul-lib-source-maps: v5.0.6
Updated on Jul 02, 2024
istanbul-lib-source-maps: v5.0.5
Updated on Jul 01, 2024
istanbul-lib-instrument: v6.0.3
Updated on Jun 30, 2024
istanbul-lib-source-maps: v5.0.4
Updated on Feb 26, 2024
istanbul-lib-source-maps: v5.0.3
Updated on Feb 26, 2024
istanbul-lib-source-maps: v5.0.2
Updated on Feb 26, 2024
JavaScript (97.51%)
CSS (2.46%)
Shell (0.03%)
Total Downloads
5,759,824,739
Last Day
7,005,716
Last Week
35,750,453
Last Month
143,945,843
Last Year
1,489,025,256
1,051 Stars
666 Commits
239 Forks
18 Watchers
17 Branches
123 Contributors
Updated on May 07, 2025
Minified
Minified + Gzipped
Latest Version
3.0.1
Package Id
istanbul-lib-report@3.0.1
Unpacked Size
36.76 kB
Size
10.30 kB
File Count
13
NPM Version
6.14.18
Node Version
14.21.3
Published on
Jul 25, 2023
Cumulative downloads
Total Downloads
Last Day
6.7%
7,005,716
Compared to previous day
Last Week
13.7%
35,750,453
Compared to previous week
Last Month
6.2%
143,945,843
Compared to previous month
Last Year
20%
1,489,025,256
Compared to previous year
3
Core reporting utilities for istanbul.
1const libReport = require('istanbul-lib-report'); 2const reports = require('istanbul-reports'); 3 4// coverageMap, for instance, obtained from istanbul-lib-coverage 5const coverageMap; 6 7const configWatermarks = { 8 statements: [50, 80], 9 functions: [50, 80], 10 branches: [50, 80], 11 lines: [50, 80] 12}; 13 14// create a context for report generation 15const context = libReport.createContext({ 16 dir: 'report/output/dir', 17 // The summarizer to default to (may be overridden by some reports) 18 // values can be nested/flat/pkg. Defaults to 'pkg' 19 defaultSummarizer: 'nested', 20 watermarks: configWatermarks, 21 coverageMap, 22}) 23 24// create an instance of the relevant report class, passing the 25// report name e.g. json/html/html-spa/text 26const report = reports.create('json', { 27 skipEmpty: configSkipEmpty, 28 skipFull: configSkipFull 29}) 30 31// call execute to synchronously create and write the report to disk 32report.execute(context)
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
security policy file detected
Details
Reason
Found 10/19 approved changesets -- score normalized to 5
Reason
0 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 0
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
license file not detected
Details
Reason
project is not fuzzed
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