verystream-scraper-standalone

A scraper for Verystream

Usage no npm install needed!

<script type="module">
  import verystreamScraperStandalone from 'https://cdn.skypack.dev/verystream-scraper-standalone';
</script>

README

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);
})();