Skip to content

aanand07/pa11y-reporter-json

This branch is 2 commits ahead of, 4 commits behind pa11y/pa11y-reporter-json:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Anand BhushanAnand Bhushan
Anand Bhushan
and
Anand Bhushan
Jun 12, 2020
3ebf56f · Jun 12, 2020

History

8 Commits
Jun 12, 2020
Jun 12, 2020
Sep 9, 2017
Sep 9, 2017
Sep 9, 2017
Apr 28, 2020
Apr 28, 2020
Sep 9, 2017
Sep 9, 2017
Sep 9, 2017
Sep 9, 2017
Jun 12, 2020
Apr 27, 2020
Apr 28, 2020

Repository files navigation

Pa11y JSON Reporter

A JSON reporter for Pa11y 5.0.

⚠️ this reporter is built into Pa11y, there's no need to install separately ⚠️

NPM version Build status LGPL-3.0 licensed

Table Of Contents

Requirements

Pa11y JSON Reporter is compatible with Pa11y 5 and later versions. It will not work with older versions of Pa11y.

Compatibility chart

Pa11y version Pa11y CLI reporter version
1.x - 4.x Unsupported
5.x 1.x
6.x 2.x

Usage

Command-Line

Install Pa11y and Pa11y JSON Reporter with npm (locally or globally is fine):

npm install -g pa11y pa11y-reporter-json

Run Pa11y using the JSON reporter:

pa11y --reporter json http://example.com

JavaScript

Assuming you've installed both Pa11y and Pa11y JSON Reporter:

const json = require('pa11y-reporter-json');
const pa11y = require('pa11y');

pa11y('http://example.com').then(results => {
    // Outputs a string with the results formatted as JSON
    json.results(results);
});

Contributing

There are many ways to contribute to Pa11y JSON Reporter, we cover these in the contributing guide for this repo.

If you're ready to contribute some code, clone this repo locally and commit your code on a new branch.

Please write unit tests for your code, and check that everything works by running the following before opening a Pull Request:

make ci

You can also run verifications and tests individually:

make verify              # Verify all of the code (ESLint)
make test                # Run all tests
make test-unit           # Run the unit tests
make test-unit-coverage  # Run the unit tests with coverage

License

Pa11y JSON Reporter is licensed under the Lesser General Public License (LGPL-3.0).
Copyright © 2017, Team Pa11y

About

A JSON reporter for Pa11y

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 99.5%
  • Makefile 0.5%