1.0.1 • Published 2 years ago

jikan-wrapper v1.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

About

jikan-wrapper-ts is a wrapper for Jikan v4 API.

Installation

npm install jikan-wrapper

Example

// import
const jikan = require('jikan-wrapper');

// usage example
const mal = new jikan;
mal.anime.getAnimeById(5114)
  .then(result => {
    console.log(result);
  });