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