Skip to content

Latest commit

 

History

History
18 lines (10 loc) · 1.13 KB

README.md

File metadata and controls

18 lines (10 loc) · 1.13 KB

A11y Website Testing Server

An accessibility API than can be used for testing a website's compliance to WCAG guidelines. Simply feed the API a website URL and it will return a set of results using axe, the world’s leading digital accessibility toolkit.

The server utilizes Puppeteer to render the website, run axe-core, and then snap a screenshot.

Built using the Express framework for Node.js.

Requirements

  • A server running Node.js (v7.6.0 or greater)

Using the API

Make a GET request to /accessibility/scan/{url}, replacing {url} with the website URL you want to test. The result will be a JSON object with your test results and a screenshot of the website.

Helpful Resources