Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

metal-a11y-checker

Package Overview
Dependencies
Maintainers
8
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

metal-a11y-checker

Accessibility test module for components

  • 1.0.4
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3
decreased by-50%
Maintainers
8
Weekly downloads
 
Created
Source

metal-a11y-checker

An automated accessibility checker

Automated accessibility test module that as opposed to many static anylisis tools in existence, employs headless browser environment through puppeteer in order to render the target components in A way they would eventually appear in the consuming service and test them with axe-core against accessibility violations. With this approach developers can get more accurate report whether their yet-to-be-preprocessed content such as JSX will conform to accessibility standards.

ezgif com-video-to-gif

Setup

  1. Install NodeJS >= v0.12.0 and NPM >= v3.0.0, if you don't have it yet. You can find it here.

  2. Install local dependencies:

npm install

Usage

The tool exposes an executable that can be used to set up the testing environment and start the accessibility tests.

Add to the package
"devDependency": {
  ...
  "metal-a11y": "^1.0.0",
  ...
}
Execute
metal-a11y [options]

Options:
  -h, --help      Show help                                            [boolean]
  -v, --version   Show version number                                  [boolean]
  -p, --packages  Execute a11y against all project in the specified directory
  -r, --root      Specifies the document root of the test server
  -c, --content   relative URL where the testable content can be found

Examples

Test your HTML content

Provided your production ready html content is placed in project's build/ folder and your entry point is index.html.

metal-a11y --root ./build --content index.html
Test multiple contents

You are able to execute the tests against multitple HTML contents. Provided your components production ready html content are placed in components/[component_name]/build folder and the entry points are demo.html.

metal-a11y --packages ./components --root ./build --content demo.html

Keywords

FAQs

Package last updated on 25 Sep 2017

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