Generate a badge from a LCOV report
npm install lcov-badge2A tool for generating SVG badges from LCOV reports, based on lcov-badge




lcov-badge2 can be used as either a command line utility or a library.
It produces your basic build badge:
To use this library, just pass the path to your lcov file:
``bash`
lcov-badge2 coverage/lcov.info
This will generate a badge.svg file. If you want an output file with a different name, you can pass-o
the option:
`bash`
lcov-badge2 -o coverage.svg coverage/lcov.info
You can view all arguments by passing the -h option.
Here's an example of programmatic usage:
`typescript
import generateBadge from 'lcov-badge2';
const badge = generateBadge('coverage/lcov.info', 'coverage')
fs.writeFileSync('badge.svg', badge);
``