Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
@acot/core
Advanced tools
This module is a low layer of acot.
Install via npm:
$ npm install --save @acot/core
The following is an example of using the @acot/acot-preset-wcag preset package. Learn @acot/core
from how to use Simple and Advanced respectively.
In the simple example, it depends on the following package.
$ npm install --save puppeteer
The following is an example of specifying all audited pages and their configuration.
import { Acot, PresetLoader } from '@acot/core';
const cwd = process.cwd();
(async () => {
const loader = new PresetLoader(cwd);
const acot = new Acot({
parallel: 4,
origin: 'http://localhost:8000',
presets: [loader.load('@acot/wcag')],
cwd,
});
acot.add('/', {
rules: {
'@acot/wcag/page-has-title': ['error', null],
'@acot/wcag/page-has-valid-lang': ['warn', null],
},
});
const summary = await acot.audit();
console.log('errorCount: %f', summary.errorCount);
console.log('warningCount: %f', summary.warningCount);
console.log('passCount: %f', summary.passCount);
})();
In the advanced example, the following package is used.
The following is an example of performing an audit according to the configuration file (acot.config.js
).
import { loadConfig, ConfigRouter } from '@acot/config';
import { findChrome } from '@acot/find-chrome';
import { Acot } from '@acot/core';
const cwd = process.cwd();
(async () => {
const config = await loadConfig('.', { cwd });
const router = new ConfigRouter(config);
const acot = new Acot({
parallel: 4,
origin: 'http://localhost:8000',
presets: config.presets ?? [],
launchOptions: {
executablePath: (await findChrome())!.executablePath,
},
cwd,
});
config.paths?.forEach((path) => {
const entry = router.resolve(path);
acot.add(path, {
rules: entry.rules,
presets: entry.presets,
headers: entry.headers,
});
});
const summary = await acot.audit();
console.log('errorCount: %f', summary.errorCount);
console.log('warningCount: %f', summary.warningCount);
console.log('passCount: %f', summary.passCount);
})();
FAQs
More accessible web, all over the world.
We found that @acot/core 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
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.