Pa11y CSV Reporter
A CSV reporter for Pa11y 5.0.
:warning: this reporter is built into Pa11y, there's no need to install separately :warning:
Table Of Contents
Requirements
Pa11y CSV Reporter is compatible with Pa11y 5.0. It will not work with older versions of Pa11y.
Usage
Command-Line
Install Pa11y and Pa11y CSV Reporter with [npm][npm] (locally or globally is fine):
npm install -g pa11y pa11y-reporter-csv
Run Pa11y using the CSV reporter:
pa11y --reporter csv http://example.com
JavaScript
Assuming you've installed both Pa11y and Pa11y CSV Reporter:
const csv = require('pa11y-reporter-csv');
const pa11y = require('pa11y');
pa11y('http://example.com').then(results => {
const csvResults = csv.results(results);
console.log(csvResults);
});
Contributing
There are many ways to contribute to Pa11y CSV 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 PR:
make ci
You can also run verifications and tests individually:
make verify
make test
make test-unit
make test-unit-coverage
License
Pa11y CSV Reporter is licensed under the Lesser General Public License (LGPL-3.0).
Copyright © 2017, Team Pa11y