Gathering detailed insights and metrics for @hint/hint-axe
Gathering detailed insights and metrics for @hint/hint-axe
Gathering detailed insights and metrics for @hint/hint-axe
Gathering detailed insights and metrics for @hint/hint-axe
npm install @hint/hint-axe
Typescript
Module System
Node Version
NPM Version
Dist files
Updated on Oct 01, 2019
configuration-development-v6.1.1
Updated on Mar 07, 2019
hint-sri-v3.0.5
Updated on Mar 07, 2019
hint-no-vulnerable-javascript-libraries-v2.7.0
Updated on Mar 07, 2019
hint-css-prefix-order-v1.0.2
Updated on Mar 07, 2019
hint-amp-validator-v2.7.0
Updated on Mar 07, 2019
TypeScript (91.49%)
JavaScript (4.96%)
CSS (2.22%)
Handlebars (0.76%)
EJS (0.5%)
HTML (0.06%)
Batchfile (0.01%)
Shell (0.01%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
Apache-2.0 License
3,653 Stars
6,372 Commits
743 Forks
75 Watchers
157 Branches
105 Contributors
Updated on Jul 11, 2025
Latest Version
4.4.21
Package Id
@hint/hint-axe@4.4.21
Unpacked Size
104.82 kB
Size
19.65 kB
File Count
107
NPM Version
10.5.0
Node Version
18.19.1
Published on
Aug 29, 2024
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
1
axe
)axe
is the accessibility engine for automated testing of HTML-based
user interfaces. These hints run the recommended set of WCAG 2.1
Level A and Level AA rules from axe-core.
The Web is an increasingly important resource in many aspects of life: education, employment, government, commerce, health care, recreation, and more. It is essential that the Web be accessible in order to provide equal access and equal opportunity to people with disabilities. An accessible Web can also help people with disabilities more actively participate in society.
The Web offers the possibility of unprecedented access to information and interaction for many people with disabilities. That is, the accessibility barriers to print, audio, and visual media can be much more easily overcome through Web technologies.
The document "Social Factors in Developing a Web Accessibility Business Case for Your Organization" discusses how the Web impacts the lives of people with disabilities, the overlap with digital divide issues, and Web accessibility as an aspect of corporate social responsibility.
Another important consideration for organizations is that web accessibility is required by laws and policies in some cases.
From WAI’s Introduction to Web Accessibility.
By default, hint-axe
contains hints which run all the
WCAG 2.1 Level A and Level AA rules included in
axe-core with document
as the target. These rules are
grouped into hints based on their assigned category within axe-core
.
See each contained hint for the specific list of enabled rules within
that group and more information about each rule.
This hint uses axe.run
and the default values (WCAG
2.1 Level A and Level AA rules) over the document
.
You can modify what rules or categories are executed via an options
object that follows axe’s documentation.
Some examples of hint configurations that you can have in the
.hintrc
file:
Disable a rule included in the default configuration:
1{ 2 "connector": {...}, 3 "formatters": [...], 4 "hints": { 5 "axe/language": ["error", { 6 "html-has-lang": "off" 7 }], 8 ... 9 }, 10 ... 11}
Enable a rule excluded from the default configuration:
1{ 2 "connector": {...}, 3 "formatters": [...], 4 "hints": { 5 "axe/keyboard": ["error", [ 6 "tabindex" 7 ]], 8 ... 9 }, 10 ... 11}
or if you want to set a custom severity:
1{ 2 "connector": {...}, 3 "formatters": [...], 4 "hints": { 5 "axe/keyboard": ["error", { 6 "tabindex": "error" 7 }], 8 ... 9 }, 10 ... 11}
Change the severity of an individual rule:
1{ 2 "connector": {...}, 3 "formatters": [...], 4 "hints": { 5 "axe/color": ["error", { 6 "color-contrast": "warning" 7 }], 8 ... 9 }, 10 ... 11}
This package is installed automatically by webhint:
1npm install hint --save-dev
To use it, activate it via the .hintrc
configuration file:
1{ 2 "connector": {...}, 3 "formatters": [...], 4 "hints": { 5 "axe/aria": "error", 6 "axe/color": "error", 7 ... 8 }, 9 "parsers": [...], 10 ... 11}
Note: The recommended way of running webhint is as a devDependency
of
your project.
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
license file detected
Details
Reason
no binaries found in the repo
Reason
Found 4/23 approved changesets -- score normalized to 1
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
Project has not signed or included provenance with any releases.
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
project is not fuzzed
Details
Reason
64 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-06-30
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