masteranime-api
v1.2.0
Published
An api interface for masterani.me
Downloads
10
Readme
MasterAnime API
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));
})();