New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

anilist-scheduler

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

anilist-scheduler

Get upcoming anime airing !

latest
Source
npmnpm
Version
1.1.6
Version published
Weekly downloads
6
50%
Maintainers
1
Weekly downloads
 
Created
Source

Anilist Scheduler

Unofficial API for upcoming anime airings. Anilist.co

📁 Installation

npm i anilist-scheduler@latest

🚦 Initializing the Scheduler

const Scheduler = require("anilist-scheduler");
const scheduler = new Scheduler({
  log: true, // Get log. (Animes upcoming list & errors)
  days: 1, // Retrieve upcoming airing for the next x days. (default: 1)
});

scheduler.init(); // Important to launch the scheduler !

Event

The 'airing' event allows you to receive recently aired anime shows.

const { default: Scheduler } = require("anilist-sheduler");
scheduler.on(Scheduler.AIRING, (animes) => {
  console.log(animes);
});

Upcoming airing

You can access the list of upcoming airings.

const upcomingAiring = scheduler.airingList;
console.log(upcomingAiring);

☎️ Contact

Discord : Zeleff_

Keywords

anime

FAQs

Package last updated on 18 Oct 2023

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