1.2.0 • Published 6 years ago
masteranime-api v1.2.0
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));
})();