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

@code-pushup/create-cli

v0.126.2

Published

[![npm](https://img.shields.io/npm/v/%40code-pushup%2Fcreate-cli.svg)](https://www.npmjs.com/package/@code-pushup/create-cli) [![downloads](https://img.shields.io/npm/dm/%40code-pushup%2Fcreate-cli)](https://npmtrends.com/@code-pushup/create-cli) [![depen

Downloads

1,805

Readme

@code-pushup/create-cli

npm downloads dependencies

An interactive setup wizard that scaffolds a code-pushup.config.ts file in your repository.

Usage

npm init @code-pushup/cli

The wizard will prompt you to select plugins and configure their options, then generate a code-pushup.config.ts file.

Options

| Option | Type | Default | Description | | --------------------- | ------------------------------------ | ------------- | -------------------------------------- | | --plugins | string[] | | Comma-separated plugin slugs to enable | | --config-format | 'ts' | 'js' | 'mjs' | auto-detected | Config file format | | --mode | 'standalone' | 'monorepo' | auto-detected | Setup mode | | --ci | 'github' | 'gitlab' | 'none' | | CI/CD integration | | --dry-run | boolean | false | Preview changes without writing files | | --yes, -y | boolean | false | Skip prompts and use defaults |

Plugin options

Each plugin exposes its own configuration keys that can be passed as CLI arguments to skip the corresponding prompts.

ESLint

| Option | Type | Default | Description | | ------------------------- | --------- | ------------- | --------------------- | | --eslint.eslintrc | string | auto-detected | Path to ESLint config | | --eslint.patterns | string | src or . | File patterns to lint | | --eslint.categories | boolean | true | Add categories |

Coverage

| Option | Type | Default | Description | | ------------------------------- | ------------------------------------------ | -------------------- | ------------------------------ | | --coverage.framework | 'jest' | 'vitest' | 'other' | auto-detected | Test framework | | --coverage.configFile | string | auto-detected | Path to test config file | | --coverage.reportPath | string | coverage/lcov.info | Path to LCOV report file | | --coverage.testCommand | string | auto-detected | Command to run tests | | --coverage.types | ('function' | 'branch' | 'line')[] | all | Coverage types to measure | | --coverage.continueOnFail | boolean | true | Continue if test command fails | | --coverage.categories | boolean | true | Add categories |

JS Packages

| Option | Type | Default | Description | | ------------------------------------ | ---------------------------------------------------------- | ------------- | ----------------- | | --js-packages.packageManager | 'npm' | 'yarn-classic' | 'yarn-modern' | 'pnpm' | auto-detected | Package manager | | --js-packages.checks | ('audit' | 'outdated')[] | both | Checks to run | | --js-packages.dependencyGroups | ('prod' | 'dev' | 'optional')[] | prod, dev | Dependency groups | | --js-packages.categories | boolean | true | Add categories |

TypeScript

| Option | Type | Default | Description | | ----------------------------- | --------- | ------------- | ---------------------- | | --typescript.tsconfig | string | auto-detected | TypeScript config file | | --typescript.categories | boolean | true | Add categories |

Lighthouse

| Option | Type | Default | Description | | ----------------------------- | ---------------------------------------------------------------- | ----------------------- | ------------------------------- | | --lighthouse.urls | string \| string[] | http://localhost:4200 | Target URL(s) (comma-separated) | | --lighthouse.categories | ('performance' | 'a11y' | 'best-practices' | 'seo')[] | all | Categories |

JSDocs

| Option | Type | Default | Description | | ------------------------- | -------------------- | -------------------------------------------- | -------------------------------------- | | --jsdocs.patterns | string \| string[] | src/**/*.ts, src/**/*.js, !**/node_modules | Source file patterns (comma-separated) | | --jsdocs.categories | boolean | true | Add categories |

Axe

| Option | Type | Default | Description | | ----------------------- | ------------------------------------------------------------ | ----------------------- | ------------------------------------------ | | --axe.urls | string \| string[] | http://localhost:4200 | Target URL(s) (comma-separated) | | --axe.preset | 'wcag21aa' | 'wcag22aa' | 'best-practice' | 'all' | wcag21aa | Accessibility preset | | --axe.setupScript | boolean | false | Create setup script for auth-protected app | | --axe.categories | boolean | true | Add categories |

Examples

Run interactively (default):

npm init @code-pushup/cli

Skip prompts and enable specific plugins:

npm init @code-pushup/cli -- -y --plugins=eslint,coverage

Set up a monorepo with GitHub CI integration:

npm init @code-pushup/cli -- --mode=monorepo --ci=github

Preview the generated config without writing:

npm init @code-pushup/cli -- -y --dry-run