Skip to content
This repository was archived by the owner on Oct 19, 2019. It is now read-only.

Latest commit

 

History

History

masteranime-scraper

Masteranime Scraper

Build Status npm version Dependency Status DevDependency Status License Doge

A scraper for Masteranime.

This package is part of the SourceScraper-Project.

Getting Started

Installation

$ npm i masteranime-scraper

Usage

const { MasteranimeScraper } = require('masteranime-scraper');

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

API

The API generated with TypeDoc can be found here.