Socket
Socket
Sign inDemoInstall

pa11y-reporter-tsv

Package Overview
Dependencies
Maintainers
7
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pa11y-reporter-tsv

A Tab-Separated-Value reporter for Pa11y


Version published
Maintainers
7
Created
Source

Pa11y TSV Reporter

A Tab-Separated-Value reporter for Pa11y 5.0.

NPM version Build status LGPL-3.0 licensed

Table Of Contents

Requirements

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

Compatibility chart

Pa11y versionPa11y CLI reporter version
1.x - 4.xUnsupported
5.x1.x
6.x2.x

Usage

Command-Line

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

npm install -g pa11y pa11y-reporter-tsv

Run Pa11y using the TSV reporter:

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

JavaScript

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

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

pa11y('http://example.com').then(results => {
    // Returns a string with the results formatted as TSV
    const tsvResults = tsv.results(results);
    console.log(tsvResults);
});

Contributing

There are many ways to contribute to Pa11y TSV 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 TSV Reporter is licensed under the Lesser General Public License (LGPL-3.0).
Copyright © 2017, Team Pa11y

Keywords

FAQs

Package last updated on 28 Apr 2020

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc