1.0.6 • Published 5 years ago

ninexbuddy-scraper v1.0.6

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

9xbuddy Scraper

Build Status npm version Dependency Status DevDependency Status License Doge

A scraper for 9xbuddy.

This package is part of the SourceScraper-Project.

Getting Started

Installation

$ npm i ninexbuddy-scraper

Usage

const { NinexbuddyScraper } = require('ninexbuddy-scraper');

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

API

The API generated with TypeDoc can be found here.