Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/JakePartusch/lumberjack
An automated website accessibility scanner and cli
https://github.com/JakePartusch/lumberjack
a11y accessibility axe cli crawler lumberjack
Last synced: 3 months ago
JSON representation
An automated website accessibility scanner and cli
- Host: GitHub
- URL: https://github.com/JakePartusch/lumberjack
- Owner: JakePartusch
- License: mit
- Created: 2020-02-05T18:34:27.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-03-03T12:48:37.000Z (over 1 year ago)
- Last Synced: 2024-04-27T01:42:13.671Z (6 months ago)
- Topics: a11y, accessibility, axe, cli, crawler, lumberjack
- Language: JavaScript
- Homepage: https://github.com/JakePartusch/lumberjack
- Size: 348 KB
- Stars: 125
- Watchers: 3
- Forks: 7
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-docs - Lumberjack
README
Lumberjack
Chop down accessibility issues with this full-website accessibility scanner
# About
Lumberjack runs [axe](https://www.deque.com/axe/) accessibility checks on your entire website!
- Reads your website's sitemap
- Spawns multiple browser instances and starts scanning with axe
- Aggregates results and reports back
# Usage
## CLI
NPX (recommended for a single run)
```
npx @jakepartusch/lumberjack --url https://google.com
```Global Install (recommended for multiple runs)
```
npm install -g @jakepartusch/lumberjack
lumberjack --url https://google.com
```### Options
```
--url // Required — The base url to scan. If a sitemap exists, its pages will be scanned as well
--strict // Optional (default: false) — Fail the process if any accessibility issues are found
--baseUrlOnly // Optional (default: false) — Skip the sitemap scan and only run the audit on the base url
```## JavaScript
```
npm install @jakepartusch/lumberjack
``````
const lumberjack = require('@jakepartusch/lumberjack');const myFunction = async () => {
const results = await lumberjack("https://google.com");
console.log(results);
}
```## Continuous Integration
GitHub Actions Example
(eg. ".github/workflows/accessibility.yml")```
name: Accessibility Auditson: [push]
jobs:
build:
runs-on: ubuntu-18.04steps:
- uses: actions/checkout@v1
- name: Install required Linux packages
run: |
sudo apt-get update
sudo apt-get install libgbm-dev
sudo apt-get install xvfb
- name: Use Node.js 12.x
uses: actions/setup-node@v1
with:
node-version: 12.x
- name: Install npm packages
run: |
npm ci
- name: Build
run: |
npm run build
- name: Accessibility Audits
run: |
npm install -g @jakepartusch/lumberjack
xvfb-run --auto-servernum lumberjack --url https://google.com```