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

adibilis

v1.0.1

Published

Scan websites for WCAG 2.2 AA accessibility violations

Readme

Adibilis CLI

Scan websites for WCAG 2.2 AA accessibility violations.

Quick Start

# Scan any URL
npx adibilis scan https://your-site.com

# Scan with auto-fix suggestions
npx adibilis scan https://your-site.com --fix

# Fail CI if serious violations found
npx adibilis scan https://your-site.com --threshold serious --json

# Generate a full report
npx adibilis scan https://your-site.com --report

Install

npm install -g adibilis

Commands

adibilis scan <url>

Scan a URL for accessibility violations.

| Option | Description | |--------|-------------| | --fix | Show generated fix patches | | --report | Generate HTML report and open in browser | | --json | Output results as JSON (for CI integration) | | --threshold <level> | Exit code 1 if violations exceed level (critical/serious/moderate/minor) | | --api-key <key> | Adibilis API key (or ADIBILIS_API_KEY env var) | | --pages <n> | Max pages to scan (default 1 for free, up to plan limit) | | --ignore <rules> | Comma-separated rule IDs to ignore | | --config <path> | Path to .adibilis.yml config file |

adibilis login

Authenticate with your Adibilis API key. The key is saved to ~/.adibilis/config.json.

adibilis init

Create a .adibilis.yml config file in the current directory.

Configuration

Create .adibilis.yml in your project root:

url: https://your-site.com
threshold: serious
ignore_rules:
  - color-contrast
pages: 5

CI/CD Integration

GitHub Actions

- run: npx adibilis scan $DEPLOY_URL --threshold serious --json
  env:
    ADIBILIS_API_KEY: ${{ secrets.ADIBILIS_API_KEY }}

GitLab CI

accessibility:
  script:
    - npx adibilis scan $DEPLOY_URL --threshold serious --json
  variables:
    ADIBILIS_API_KEY: $ADIBILIS_API_KEY

Environment Variables

| Variable | Description | |----------|-------------| | ADIBILIS_API_KEY | API key for authenticated scans | | ADIBILIS_API_URL | Custom API base URL (default: production) |

API Key Priority

  1. --api-key flag
  2. ADIBILIS_API_KEY environment variable
  3. ~/.adibilis/config.json (saved via adibilis login)

License

MIT