
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
A frontend library for continuous accessibility testing and issue highlighting
A frontend library for continuous accessibility testing and issue highlighting.
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:
Try it out at the Playground (StackBlitz).
Accented works well alongside other common accessibility tools:
eslint-plugin-jsx-a11y
or the Biome a11y linter are great,
and they validate the whole codebase at once,
but some issues can only be detected in the rendered page.
For example, the linter cannot find issues with color contrast or heading order.
Besides, Accented is not tied to JSX.@axe-core/playwright
.
That means writing test cases for every state of your app you want to check.
Accented, by contrast, automatically scans whatever’s currently visible in the browser.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.
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.
Contributions are welcome!
Have feedback or ideas? Reach out to Pavel at hello@pavelpomerantsev.com.
FAQs
A frontend library for continuous accessibility testing and issue highlighting
The npm package accented receives a total of 1,783 weekly downloads. As such, accented popularity was classified as popular.
We found that accented demonstrated a healthy version release cadence and project activity because the last version was released less than 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
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.