Security News
cURL Project and Go Security Teams Reject CVSS as Broken
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
@daniel.husar/a11y-report
Advanced tools
Run accessibility report on the provided urls via axe-core
Using puppeeter we run axe-core on all provided urls and collect all violations.
Make sure you have at least axe-core ^3.0.0 loaded in your urls or provide axe url to be automatically injected for you.
yarn add --dev @daniel.husar/a11y-report
or
npm install --dev @daniel.husar/a11y-report
import a11yReport from '@daniel.husar/a11y-report';
(async () => {
const report = await a11yReport({
urls: ['http://localhost:9001/index.html'],
axeUrl: 'https://cdnjs.cloudflare.com/ajax/libs/axe-core/3.2.2/axe.min.js'
});
})();
Prints accessibility report with logger function and returns counts of passes, failures and warnings.
Property | Type | Default | Description |
---|---|---|---|
urls | string[] | [] | Array of urls to run report on. |
delay | number | 100 | Delay to wait for axe-core to be executed. |
axeUrl | string | undefined | Every page needs axe-core script to be loaded. If your pages don't load axe-core, you can provide axe-core url to be injected. |
ignoreViolations | string[] | [] | Global array of all violations that should be ignored. |
ignoreViolationsForUrls | {} | [] | Mappings of violations per url to ignore. Example: { 'http://localhost:9001/index.html': ['Violation to ignore'] } |
errorTags | string[] | ['wcag2a', 'wcag2aa', 'wcag21aa'] | Array of tags which would consider violation as error. |
reporter | default | simple∣default | Which reporter to use. |
logger | function | console.log | Logger function to use. |
axe | {} | Axe-core config. | |
axe.context | {} | element: { include: ['html'] } | Context parameter. |
axe.options | {} | {} | Axe-core options parameter. |
MIT
FAQs
Print accessibility report via axe-core
The npm package @daniel.husar/a11y-report receives a total of 1 weekly downloads. As such, @daniel.husar/a11y-report popularity was classified as not popular.
We found that @daniel.husar/a11y-report demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.