Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
pa11y-reporter-html
Advanced tools
An HTML reporter for Pa11y 5.0.
Pa11y HTML Reporter is compatible with Pa11y 5.0. It will not work with older versions of Pa11y.
Install Pa11y and Pa11y HTML Reporter with npm (locally or globally is fine):
npm install -g pa11y pa11y-reporter-html
Run Pa11y using the HTML reporter:
pa11y --reporter html http://example.com
Assuming you've installed both Pa11y and Pa11y HTML Reporter:
const html = require('pa11y-reporter-html');
const pa11y = require('pa11y');
pa11y('http://example.com').then(async results => {
// Returns a string with the results formatted as HTML
const htmlResults = await html.results(results);
console.log(htmlResults);
});
There are many ways to contribute to Pa11y HTML 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 # 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
Pa11y HTML Reporter is licensed under the Lesser General Public License (LGPL-3.0).
Copyright © 2017, Team Pa11y
FAQs
An HTML reporter for Pa11y
The npm package pa11y-reporter-html receives a total of 12,818 weekly downloads. As such, pa11y-reporter-html popularity was classified as popular.
We found that pa11y-reporter-html demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.