Crawling
How to Configure the Web Crawler
Learn how to set up the web crawler to test issues with different scenarios and achieve broader coverage.
2023-07-11T03:00:00.000Z
Use JavaScript to start A11yWatch Lite on your local machine and test out an early slimmed-down version of the software.
Scan a single page or entire websites in one go using efficient streams.
Use npm or your favorite JavaScript package manager to install the Lite OS suite.
// npm install @a11ywatch/a11ywatch
import { scan, multiPageScan } from "@a11ywatch/a11ywatch";
// single page website scan.
const results = await scan({ url: "https://a11ywatch.com" });
console.log(results);
// multi page website scan.
const resultsAll = await multiPageScan({ url: "https://a11ywatch.com", subdomains: false });
console.log(resultsAll);
Get started with A11yWatch now for affordable and speedy automated web accessibility tools.