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

Latest commit

 

History

History
33 lines (26 loc) · 1.55 KB

File metadata and controls

33 lines (26 loc) · 1.55 KB

MasterAnime API

Build Status npm version Maintainability Test Coverage Dependency Status DevDependency Status License Doge

An api interface for MasterAnime


Getting Started

Installation

$ npm i masteranime-api

Usage

const { MasterAnimeAPI } = require('masteranime-api');

(async () => {
    const trending = await MasterAnimeAPI.getTrending();
    trending.popular_today.forEach(e => console.log(e.title));
})();

API

The API generated with TypeDoc can be found here.