Provides the HtmlRunner class for scrapping.
This package is part of the SourceScraper-Project.
$ npm i source-scraper-html-runner
const { HtmlRunner } = require('source-scraper-html-runner');
(async () => {
const url = 'some url';
const data = await new HtmlRunner().run(url, args => {
// Extract data using args
});
// Do something with extracted data
})();