Core business logic for the used by the Code PushUp CLI
npm install @code-pushup/core


šš¬ Quality metrics for your software project. šš
1. āļø Configure what you want to track using your favourite tools.
2. š¤ Integrate it in your CI.
3. š Visualize reports in a beautiful dashboard.
---
This package contains the core business logic for the Code PushUp CLI.
For most use cases, you'll probably want to use the @code-pushup/cli package instead.
The core package is useful if you prefer programmatic usage (avoids going through the command line).
``sh`
npm install --save-dev @code-pushup/core
`sh`
yarn add --dev @code-pushup/core
`sh`
pnpm add --save-dev @code-pushup/core
`ts
import { collect } from '@code-pushup/core';
const report = await collect({
// ...
});
``