source-scraper-html-runner
v1.0.8
Published
Provides the HtmlRunner class for scrapping.
Downloads
21
Maintainers
Readme
source-scraper-html-runner
Provides the HtmlRunner class for scrapping.
This package is part of the SourceScraper-Project.
Getting Started
Installation
$ npm i source-scraper-html-runner
Usage
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
})();