Gathering detailed insights and metrics for crawlkit-runner-axe
Gathering detailed insights and metrics for crawlkit-runner-axe
Gathering detailed insights and metrics for crawlkit-runner-axe
Gathering detailed insights and metrics for crawlkit-runner-axe
npm install crawlkit-runner-axe
Typescript
Module System
Min. Node Version
Node Version
NPM Version
JavaScript (100%)
Total Downloads
4,800
Last Day
1
Last Week
2
Last Month
14
Last Year
235
MIT License
5 Stars
56 Commits
3 Forks
1 Watchers
140 Branches
3 Contributors
Updated on Mar 05, 2020
Latest Version
1.0.4
Package Id
crawlkit-runner-axe@1.0.4
Size
2.59 kB
NPM Version
4.0.5
Node Version
7.4.0
Cumulative downloads
Total Downloads
Last Day
0%
1
Compared to previous day
Last Week
-33.3%
2
Compared to previous week
Last Month
55.6%
14
Compared to previous month
Last Year
41.6%
235
Compared to previous year
This runner can be used with CrawlKit in order to audit a website with the aXe accessibility engine.
1npm install crawlkit-runner-axe --save
1const CrawlKit = require('crawlkit'); 2const AxeRunner = require('crawlkit-runner-axe'); 3 4const crawler = new CrawlKit('http://your/page'); 5// You could add a finder here in order to audit a whole network of pages 6crawler.addRunner('aXe', new AxeRunner()); 7 8crawler.crawl() 9 .then((data) => { 10 console.log(JSON.stringify(data.results, true, 2)); 11 }, (err) => console.error(err));
You can pass an options object to the aXe runner like this:
1crawler.addRunner('aXe', new AxeRunner(), { 2 runOnly: { 3 type: 'tag', 4 values: ['wcag2aa'] 5 } 6});
For a list of options and the structure of the options object, please consult the aXe API.
You can define the context the aXe runner should use like this:
1crawler.addRunner('aXe', new AxeRunner(), null, '.my-context');
By default, the context is document
. Please bear in mind that only selector contexts work, as the code of the aXe runner itself runs in node.
This project is in no way affiliated with Deque Labs.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
Found 12/24 approved changesets -- score normalized to 5
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-07-14
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More