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

@kodalabs-io/eqo

v1.0.0

Published

RGAA v4.1.2 accessibility compliance analyzer for NextJS projects

Readme

Audit your Next.js source code and rendered pages against all 106 RGAA v4.1.2 criteria (aligned with WCAG 2.1 A/AA). Automate ~65% of the criteria, generate reports in 5 formats, block CI on regressions, and feed your legal accessibility declaration — without false promises about what automation can and cannot do.

→ Full documentation


Features

  • 106 RGAA v4.1.2 criteria — complete catalog, automation level stated per criterion
  • Two-phase analysis — Babel AST static analysis + Playwright runtime (real Chromium)
  • 5 output formats — JSON, HTML, SARIF (GitHub Code Scanning), Markdown, JUnit
  • CI/CD native — configurable threshold, exit code 1 on failure, inline PR annotations
  • Honest by designneeds-review criteria are clearly marked, never inflated
  • GitHub Action included
  • i18nen-US (default) and fr-FR

Installation

pnpm add -D @kodalabs-io/eqo
# npm install -D @kodalabs-io/eqo
# bun add -D @kodalabs-io/eqo

For runtime analysis (browser), install the Playwright peer dependencies:

pnpm add -D playwright @axe-core/playwright axe-core
pnpm exec playwright install chromium

No browser? Start with --static-only. Themes 1, 2, 5, 6, 8, 9, 11 — no Playwright needed.


Quick Start

1. Initialize

pnpm eqo init   # npx eqo init  ·  bunx eqo init

Creates rgaa.config.ts in your project root.

2. Configure

// rgaa.config.ts
import { defineConfig } from "@kodalabs-io/eqo";

export default defineConfig({
  baseUrl: "http://localhost:3000",
  projectName: "my-app",
  locale: "fr-FR",

  pages: [
    { path: "/",              name: "Home" },
    { path: "/contact",       name: "Contact" },
    { path: "/accessibilite", name: "Accessibility" },
  ],

  output: [
    { format: "json",     path: "./public/rgaa-report.json" },
    { format: "sarif",    path: "./reports/rgaa.sarif" },
    { format: "markdown", path: "./reports/rgaa.md" },
  ],

  thresholds: {
    complianceRate: 0,    // 0 = never block CI. Set to 80 to enforce a threshold.
    failOn: "threshold",
  },
});

3. Run

npx eqo analyze               # Full audit: static + browser
npx eqo analyze --static-only # No browser — runs in seconds
npx eqo analyze --threshold 80 # Override threshold for a one-off check

GitHub Actions

name: Accessibility Audit
on:
  push:
    branches: [main]
  pull_request:

jobs:
  rgaa:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4

      - name: Start Next.js app
        run: |
          npm install && npm run build && npm start &
          npx wait-on http://localhost:3000

      - name: Run RGAA audit
        uses: kodalabs-io/eqo@v1
        with:
          threshold: 0        # 0 = report only, never blocks CI
          locale: fr-FR
          upload-sarif: true  # Adds inline annotations to your PR diff

Set threshold: 80 to fail the pipeline if compliance drops below 80%.


Documentation

| | | |---|---| | Introduction | RGAA law, who must comply, and Eqo's honest scope | | Getting Started | Install, configure, and run your first audit in 5 minutes | | Configuration | Full rgaa.config.ts reference — every option explained | | Accessibility Page | Build your /accessibilite page in Next.js | | CI/CD Integration | Blocking strategies, thresholds, PR comments | | CLI Reference | All eqo commands and flags | | API Reference | Programmatic usage as a library |


License

MIT — Copyright © 2026 Koda Labs