source-scraper-dom-runner
v1.0.8
Published
Provides the DomRunner class for scrapping.
Downloads
23
Maintainers
Readme
source-scraper-dom-runner
Provides the DomRunner class for scrapping.
This package is part of the SourceScraper-Project.
Getting Started
Installation
$ npm i source-scraper-dom-runner
Usage
const { DomRunner } = require('source-scraper-dom-runner');
(async () => {
const url = 'some url';
const data = await new DomRunner().run(url, args => {
// Extract data using args
});
// Do something with extracted data
})();