Socket
Book a DemoInstallSign in
Socket

accented

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

accented

A frontend library for continuous accessibility testing and issue highlighting

latest
Source
npmnpm
Version
1.1.2
Version published
Weekly downloads
1.8K
703.13%
Maintainers
1
Weekly downloads
 
Created
Source
Accented

Accented

A frontend library for continuous accessibility testing and issue highlighting.

What is Accented?

Accented is a visual library built on axe-core that helps you catch issues in real time.

It displays interactive highlights for every accessibility issue that axe-core detects.

Here’s a side-by-side comparison — without Accented vs. with it enabled:

Two screenshots of the same web application side by side. On the left, the regular state of the application. On the right, the same state but with bright outlines and buttons added to some page elements.

Try it out at the Playground (StackBlitz).

Accented works well alongside other common accessibility tools:

When used in console-only mode, Accented behaves similarly to @axe-core/react and can serve as a direct replacement. Unlike @axe-core/react, Accented works with any framework — or none at all — making it suitable for any web project.

Learn more about Accented at accented.dev.

Installation and usage

Install:

npm install --save-dev accented

Then import and run during app initialization:

if (process.env.NODE_ENV === 'development') {
  const { accented } = await import("accented");
  accented();
}

⚠️ Heads up: Accented is for development use only. Don’t expose it to end users.

See the docs for your bundler or framework for how to run code only in the development environment.

More info

Contributing

Contributions are welcome!

  • See CONTRIBUTING.md for setup instructions and guidelines.
  • Feel free to open an issue or pull request if you spot a bug or have a feature idea.

Have feedback or ideas? Reach out to Pavel at hello@pavelpomerantsev.com.

Keywords

accessibility

FAQs

Package last updated on 28 Aug 2025

Did you know?

Socket

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.

Install

Related posts