Skip to content

A JavaScript library made for interfacing with the Kitsu API

License

Notifications You must be signed in to change notification settings

hsiW/kitsu-fetch

Repository files navigation

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.

About

A JavaScript library made for interfacing with the Kitsu API

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published