🚀. Socket Launch Week Day 3:Socket Firewall Now Blocks Malicious VS Code and Open VSX Extensions.Learn more
Sign In

jikan-client-js

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

jikan-client-js

Client SDK of jikan.moe

latest
Source
npmnpm
Version
0.0.8-dev
Version published
Maintainers
1
Created
Source

jikan-client-ts

WIP: Jikan Client for JS and TS. Contribution are welcome!

Usage

npm install jikan-client-js

Anime

Example (ES5)

const { Anime } = require("jikan-client-js");

const anime = new Anime(40028); // 40028 is anime id (shingeki no kyojin final season), you can got from search api (WIP)
anime.get() // get anime information
    .then(result => console.log(result))
    .catch(e => console.log(e));

anime.getEpisode(1) // get episode page 1
    .then(result => console.log(result))
    .catch(e => console.log(e));

Example (ES6+)

import { Anime } from "jikan-client-js";

const anime = new Anime(40028); // 40028 is anime id (shingeki no kyojin final season), you can got from search api (WIP)
const animeInformation = await anime.get(); // get anime information
const animeEpisode = await anime.getEpisode(1); // get episode page 1

Available API

Referenced from Jikan Moe API https://jikan.docs.apiary.io/#reference/0/anime

    get()
    getCharacterStaff()
    getEpisodes(page: number)
    getNews()
    getPV()
    getStatistics()
    getForum()
    getMoreInfo()
    getReviews(page: number)
    getRecommendations()
    getUserUpdates(page: number)

Manga

WIP

Person

WIP

Character

WIP

WIP

Season

WIP

Season Archive

WIP

Season Later

WIP

Schedule

WIP

Top

WIP

Genre

WIP

Producer

WIP

Magazine

WIP

User

WIP

Club

WIP

Meta

WIP

FAQs

Package last updated on 28 Mar 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts