Skip to content

Files

Latest commit

dbc5b8d · Apr 7, 2025

History

History

core

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Feb 25, 2025
Feb 19, 2024
Dec 17, 2024
Apr 7, 2025
Dec 9, 2024
Dec 4, 2023
Dec 4, 2023
Jan 21, 2025
Dec 9, 2024
Jan 27, 2025

@code-pushup/core

npm downloads dependencies

🔎🔬 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).

Setup

npm install --save-dev @code-pushup/core
yarn add --dev @code-pushup/core
pnpm add --save-dev @code-pushup/core

Usage

import { collect } from '@code-pushup/core';

const report = await collect({
  // ...
});