maddevsio / seo-analyzer

The library for analyze a HTML file to show all of the SEO defects
MIT License
78 stars 12 forks source link

Added inputUrls function to analyze list urls #25

Closed denisoed closed 7 months ago

denisoed commented 7 months ago

Analyze the url list and output the report to the console

const SeoAnalyzer = require('seo-analyzer');

new SeoAnalyzer()
  .inputUrls(['https://example.com', 'https://example.com/about'])
  .addRule('imgTagWithAltAttributeRule')
  .outputConsole()
  .run();