Skip to content

Latest commit

 

History

History
22 lines (19 loc) · 690 Bytes

File metadata and controls

22 lines (19 loc) · 690 Bytes

wcag-scan-go

This app allows for quick scan of a website.

Features include:

  • Concurrency safe
app := App{
    Workers:  8 // Set number of workers
}
  • Regex pattern matching on URLs
ExcludeRegex: []string{"/path/"} // Exlcude URLs that match to /path/
IncludeRegex: []string{"/path/"} // ONLY include URLs that match /path/
  • Content search engine with TF-IDF based content indexing
  • Browser based GUI built using VueJS
  • WCAG 2.2 A and AA compliance check

License

The MIT License (MIT)