README
Vidstreaming Scrapper
A scrapper for Vidstreaming.
This package is part of the SourceScrapper-Project.
Getting Started
Installation
$ npm i vidstreaming-scrapper
Usage
const { VidstreamingScrapper } = require('vidstreaming-scrapper');
(async () => {
const url = 'some url';
const scrap = await VidstreamingScrapper.scrap(url);
if (scrap.success)
console.log(scrap.data.sources);
})();