A wrapper for the Kitsu API that is made to simplify things as well as provide consitent data.
If using yarn,
$ yarn add kitsu-fetch --save
If using npm,
$ npm install kitsu-fetch --save
Retrieve an array of Anime objects using the passed search term:
const kitsu = new (require('kitsu-fetch'));
(async () => {
let response;
try {
response = await kitsu.searchAnime('RWBY');
} catch(e) {
// Handle error with request
console.log('Error getting anime data', e);
return;
}
// Do something with the response
console.log(response);
})();
This project is licensed under ISC.