# @7sean68/jacoco-parse

> Parse jacoco coverage to JSON, based on output from lcov-parse

Latest version **2.2.0** (published 2023-05-06) · MIT license · 0 weekly downloads

## Install

```sh
npm install @7sean68/jacoco-parse
pnpm add @7sean68/jacoco-parse
yarn add @7sean68/jacoco-parse
bun add @7sean68/jacoco-parse
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 2.2.0 |
| Published | 2023-05-06 |
| First published | 2023-04-24 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 337.8 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | 7sean68 |
| Maintainers | 7sean68 |

## Links

- npm: https://www.npmjs.com/package/@7sean68/jacoco-parse
- Repository: https://github.com/7sean68/jacoco-parse
- Issues: https://github.com/7sean68/jacoco-parse/issues
- npm.io page: https://npm.io/package/@7sean68/jacoco-parse

## Dependencies (1)

- [xml2js](https://npm.io/package/xml2js.md) ^0.5.0

## Recent versions

- 2.2.0 (latest) — 2023-05-06
- 2.1.0 — 2023-04-24

## README

# @7sean68/jacoco-parse

forked from https://github.com/vokal/jacoco-parse

Parse jacoco results file and return JSON

The output is based on, and intended to be compatible with, https://github.com/davglass/lcov-parse
as well as https://github.com/vokal/cobertura-parse

## Use

```js
var jacoco = require( "jacoco-parse" );

// parse by file path
jacoco.parseFile( "filepath.xml", function( err, result ) { ... } );

// or parse file contents
jacoco.parseContent( "<?xml version="1.0" ?><report>...</report>",
    function( err, result ) { ... } );
```

---
_Source: https://npm.io/package/@7sean68/jacoco-parse · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
