1.0.0 • Published 5 years ago

verystream-scraper-standalone v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

Verystream Scraper

Build npm version License Downloads

A scraper for Verystream.

This package is NOT YET part of the SourceScraper-Project.

Only a standalone module.

Getting Started

Installation

$ npm i verystream-scraper-standalone

Usage

const { VerystreamScraper } = require('verystream-scraper-standalone');

(async () => {
    const url = 'some url';
    const scrap = await new VerystreamScraper().scrap(url);
    if (scrap.success)
        console.log(scrap.data.sources);
})();