npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@0xdoublesharp/doublcov

v0.4.3

Published

Find what's missing with static LCOV coverage reports

Downloads

1,517

Readme

Build from an existing lcov.info file or run one of the built-in coverage builders first:

npx @0xdoublesharp/doublcov build --lcov lcov.info --sources src

What You Get

  • A portable static report directory you can upload to CI artifacts or any static host.
  • Built-in builders for Foundry, Hardhat, Vitest, Jest, Node/V8, pytest, Rust coverage tools, and gcov/lcov.
  • Source-level navigation for uncovered lines, branch/function totals, parser diagnostics, and historical coverage.
  • A GitHub Action, npm package, standalone binaries, and Docker image for different project shapes.

Install

npm install --save-dev @0xdoublesharp/doublcov

or:

pnpm add -D @0xdoublesharp/doublcov

Run without installing:

npx @0xdoublesharp/doublcov build

or:

pnpm dlx @0xdoublesharp/doublcov build

The executable is:

doublcov

Commands

Build from existing LCOV:

doublcov build \
  --lcov lcov.info \
  --sources src

Run a builder and then build the report:

doublcov foundry -- --exclude-tests --ir-minimum
doublcov hardhat
doublcov vite
doublcov jest
doublcov v8
doublcov pytest
doublcov cargo-llvm-cov
doublcov cargo-tarpaulin
doublcov lcov-capture

Local builds open the generated index.html automatically. Open an existing report directory:

doublcov open coverage/report

For large projects or hosted reports, generate split static assets:

doublcov build --mode static --no-open
doublcov open coverage/report

standalone mode is the local default and writes a self-contained index.html that can be opened from disk. static mode is the CI default and writes index.html, assets, and lazy-loaded JSON files for GitHub Pages and other static hosts. doublcov open detects the report type: standalone reports open directly, and static reports are served on an available local port. Static preview runs in the foreground and stops automatically after 30 minutes unless extended from the browser.

Generic build defaults:

  • LCOV path: lcov.info
  • source path: src
  • output directory: coverage/report
  • history file: .doublcov/history.json

Builder commands also read ecosystem config and place the report next to the resolved LCOV file when --out is not set.

Supported Builders

  • foundry / forge: runs forge coverage --report lcov
  • hardhat: runs npx hardhat coverage
  • vite / vitest: runs npx vitest run --coverage --coverage.reporter=lcov
  • jest: runs npx jest --coverage --coverageReporters=lcov
  • c8 / v8 / node / node-test: runs npx c8 --reporter=lcov node --test
  • pytest / python / coverage.py: runs python -m pytest --cov --cov-report=lcov:<path>
  • cargo-llvm-cov / llvm-cov / rust: runs cargo llvm-cov --lcov --output-path <path>
  • cargo-tarpaulin / tarpaulin: runs cargo tarpaulin --out Lcov
  • lcov-capture / lcov / gcov / c / cpp: runs lcov --capture for gcov-style C/C++ coverage data

For tools that always write lcov.info inside a report directory, --lcov must point to a path ending in lcov.info.

Pass arguments to the underlying builder after --:

doublcov forge -- --exclude-tests --ir-minimum
doublcov vite -- --runInBand
doublcov pytest -- tests/unit
doublcov cargo-llvm-cov -- --workspace

Builder integrations are built into this CLI. Adding a new builder requires a code change in the repository.

Solidity

Foundry:

{
  "scripts": {
    "coverage": "doublcov forge -- --exclude-tests --ir-minimum",
    "coverage:ci": "doublcov forge --no-open -- --exclude-tests --ir-minimum"
  }
}

Hardhat:

{
  "scripts": {
    "coverage": "doublcov hardhat",
    "coverage:ci": "doublcov hardhat --no-open"
  }
}

From existing Hardhat LCOV:

npx hardhat coverage
doublcov build \
  --lcov coverage/lcov.info \
  --sources contracts \
  --out coverage/report

JavaScript And TypeScript

doublcov vite
doublcov jest
doublcov v8

v8 uses c8 around Node's built-in test runner. Or build from existing LCOV:

doublcov build \
  --lcov coverage/lcov.info \
  --sources src \
  --extensions ts,tsx,js,jsx,mts,cts,mjs,cjs,vue

Python, Rust, C, And C++

doublcov pytest
doublcov cargo-llvm-cov
doublcov cargo-tarpaulin
doublcov lcov-capture -- --rc branch_coverage=1

These builders assume the ecosystem coverage tool is installed in the project or environment: pytest-cov for Python, cargo-llvm-cov or cargo-tarpaulin for Rust, and lcov plus compiler-generated gcov data for C/C++.

Diagnostics

Attach parser-tagged diagnostics:

doublcov build \
  --diagnostic foundry-debug:coverage.debug \
  --diagnostic foundry-bytecode:coverage.bytecode

Foundry aliases:

doublcov forge --debug coverage.debug --bytecode coverage.bytecode

Themes And UI Hooks

Attach declarative report customization:

doublcov build \
  --customization doublcov.config.json \
  --theme ci-dark

Customization JSON can set "open" to control whether the generated index.html opens after build or builder commands. It can also set lcov, out, sources, extensions, history, and name defaults, plus themes and declarative UI hook metadata for report:header, report:summary, file:toolbar, and sidebar:panel.

The CLI automatically loads doublcov.config.json from the current working directory when it exists. Use --customization <path> to override the path. An explicitly supplied customization path must exist.

Local builds open by default. CI and the GitHub Action default to --mode static --no-open. Use --mode, --open, or --no-open to override that behavior for one run.

Builder command defaults resolve from CLI flags first, then doublcov.config.json, then project config such as package.json, foundry.toml, Hardhat source paths, Jest/Vitest/c8 config, .solcover.js, or pyproject.toml. When no report output is configured, Doublcov writes the report to a report directory next to the resolved LCOV file.

Output Hosting

Standalone reports can be opened directly from disk. Static reports are better for large projects and can be uploaded to GitHub Pages, GitLab Pages, Netlify, Vercel, Cloudflare Pages, object storage, or CI artifacts.

GitHub Action

For non-Node projects, use the repository action to download the standalone binary in CI:

- uses: doublesharp/doublcov@v0
  with:
    command: build
    args: --lcov coverage/lcov.info --sources src --out coverage/report

Use the moving major action ref for compatible action updates. Omit version to download the latest GitHub Release binary, or set version: v0.4.3 to pin the downloaded CLI binary for reproducible CI. The action passes --no-open by default. Add --open to args only when the workflow intentionally has a browser-capable environment.

Distribution

npm is the primary distribution channel for the CLI. Tagged GitHub Releases publish standalone binaries and checksums, the root GitHub Action wraps those binaries for any-language CI, and the Docker image is published for containerized workflows.

Additional docs: