
Security News
OpenGrep Restores Fingerprinting in JSON and SARIF Outputs
OpenGrep has restored fingerprint and metavariable support in JSON and SARIF outputs, making static analysis more effective for CI/CD security automation.
@bluecadet/cadetfrctl
Advanced tools
Adds an `a11y` panel to Fractal that runs AXE tests against the current component in the preview window.
Adds an a11y
panel to Fractal that runs AXE tests against the current component in the preview window.
npm -i -D @bluecadet/cadetfrctl @frctl/mandelbrot
In fractal.config.js
, add the following lines:
const mandelbrot = require('@frctl/mandelbrot');
const theme = require('@bluecadet/cadetfrctl')(mandelbrot);
fractal.web.theme(theme);
You can add options that you would normally pass to the mandelbrot
theme by passing options in an object:
const mandelbrot = require('@frctl/mandelbrot');
const theme = require('cadetfrctl')(mandelbrot, {
panels: ['html', 'a11y']
});
fractal.web.theme(theme);
If a component has a violation that is not relevant to the context of the component (like a component that only contains an h3, for example), you can add the AXE violation id to a knownViolations
array the config file:
// example.config.js
module.exports = {
title: 'Example Component',
context: {
text: 'Hello World!'
},
knownViolations: [
'landmark-one-main',
'page-has-heading-one',
'region'
]
}
FAQs
Adds an `a11y` panel to Fractal that runs AXE tests against the current component in the preview window.
The npm package @bluecadet/cadetfrctl receives a total of 19 weekly downloads. As such, @bluecadet/cadetfrctl popularity was classified as not popular.
We found that @bluecadet/cadetfrctl demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
OpenGrep has restored fingerprint and metavariable support in JSON and SARIF outputs, making static analysis more effective for CI/CD security automation.
Security News
Security experts warn that recent classification changes obscure the true scope of the NVD backlog as CVE volume hits all-time highs.
Security Fundamentals
Attackers use obfuscation to hide malware in open source packages. Learn how to spot these techniques across npm, PyPI, Maven, and more.