Skip to content

Latest commit

 

History

History
37 lines (31 loc) · 796 Bytes

README.md

File metadata and controls

37 lines (31 loc) · 796 Bytes

kitsu-fetch

A wrapper for the Kitsu API that is made to simplify things as well as provide consitent data.

Installation

If using yarn,

$ yarn add kitsu-fetch --save

If using npm,

$ npm install kitsu-fetch --save

Examples

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);
})();

License

This project is licensed under ISC.