
Research
/Security News
OpenAPI React Query Codegen Compromised in Mini Shai-Hulud npm Supply Chain Attack
Ten malicious OpenAPI React Query Codegen versions were published to npm in the Mini Shai-Hulud attack, all with valid provenance.
@webability/core
Advanced tools
Accessibility scanner engine — WCAG 2.2 AA/AAA compliance testing with 200+ rules
WCAG accessibility scanner engine with 200+ rules and fix suggestions.
npm install @webability/core playwright
import { scan } from '@webability/core'
const result = await scan('https://example.com')
console.log(result.summary)
// { total: 12, critical: 1, serious: 3, moderate: 8, minor: 0 }
for (const issue of result.issues) {
console.log(`[${issue.impact}] WCAG ${issue.wcag}: ${issue.message}`)
if (issue.fix?.suggestedValue) {
console.log(` Fix: ${issue.fix.attribute}="${issue.fix.suggestedValue}"`)
}
}
import { scan } from '@webability/core'
// Pass a Playwright page object
const result = await scan(page)
const result = await scan('https://example.com', {
viewport: 'mobile', // 'desktop' | 'tablet' | 'mobile'
rootSelector: '#main', // limit scan scope
includeAxe: true, // include additional checks (default: true)
dismissModals: true, // dismiss cookie banners (default: true)
})
import { scan, toHtmlReport } from '@webability/core'
const result = await scan('https://example.com')
const html = toHtmlReport(result)
fs.writeFileSync('report.html', html)
MIT
FAQs
Accessibility scanner engine — WCAG 2.2 AA/AAA compliance testing with 200+ rules
We found that @webability/core 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.

Research
/Security News
Ten malicious OpenAPI React Query Codegen versions were published to npm in the Mini Shai-Hulud attack, all with valid provenance.

Security News
Socket joins more than 100 technology, cybersecurity, and financial organizations calling for a global surge in cyber defense.

Product
Enterprise security teams can now detect malware, credential theft, suspicious network activity, and risky updates across Microsoft Edge extensions.