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

@bocoup/aria-at-automation-harness

v1.2.0

Published

A command-line utility for executing test plans from [w3c/aria-at](https://github.com/w3c/aria-at). It operates by communicating with an [AT Driver](https://github.com/w3c/at-driver) server and (in some environments) a [WebDriver](https://github.com/w3c/w

Readme

aria-at-automation-harness

A command-line utility for executing test plans from w3c/aria-at. It operates by communicating with an AT Driver server and (in some environments) a WebDriver server.

aria-at-automation · aria-at-automation-harness · aria-at-automation-driver · aria-at-automation-results-viewer

Usage instructions

Installation

  1. Install the software under test
  2. Install Node.js
  3. Download ARIA-AT and build the tests:
    $ git clone https://github.com/w3c/aria-at
    $ cd aria-at && npm install && npm run build
  4. Download this project's source code and install its dependencies:
    $ git clone https://github.com/w3c/aria-at-automation-harness.git
    $ cd aria-at-automation-harness && npm install

Environment configuration

  1. Run the AT Driver server for the assistive technology under test
  2. Run the appropriate WebDriver server (if testing with Firefox or Chrome)
  3. Run the assistive technology under test

Execution

With the required software in place and the environment correctly configured, the host.js command-line application can be used to run ARIA-AT test plans. Execute the following command to review the available arguments:

$ bin/host.js run-plan --help --show-hidden

For example, to run ARIA-AT's "Horizontal slider" test plan using NVDA and Firefox, execute the following command in a terminal:

$ node aria-at-automation-harness/bin/host.js run-plan \
    --plan-workingdir aria-at/build/tests/horizontal-slider \
    '{reference/**,test-*-nvda.*}' \
    --web-driver-url=http://127.0.0.1:4444 \
    --at-driver-url=ws://127.0.0.1:4382/session \
    --reference-hostname=127.0.0.1 \
    --web-driver-browser=firefox

aria-at-automation

A collection of projects for automating assistive technology tests from w3c/aria-at and beyond

aria-at-automation-harness
A command-line utility for executing test plans from w3c/aria-at without human intervention using the aria-at-automation-driver

aria-at-automation-driver
A WebSocket server which allows clients to observe the text enunciated by a screen reader and to simulate user input

aria-at-automation-results-viewer
A tool which translates the JSON-formatted data produced by the aria-at-automation-harness into a human-readable form