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