Skip to content
This repository was archived by the owner on Jun 15, 2022. It is now read-only.
/ animewizard Public archive

Allows interaction with anime streaming sites in unconventional ways.

License

Notifications You must be signed in to change notification settings

jazamb/animewizard

Repository files navigation

animewizard

A Node.js interface for downloading anime.

animixplay.to

Usage

const { AnimixPlay } = require("animewizard");

const animixPlay = new AnimixPlay();
(async () => {
    // search for animes
    let animes = await animixPlay.search("Jujutsu Kaisen");

    // get episodes of anime
    let anime = await animixPlay.resolve(animes[0]);
    console.log(anime.episodes);

    // download first episode
    let stream = await animixPlay.download(anime.episodes[0]);
    const fs = require("fs");
    stream.pipe(fs.createWriteStream(anime.episodes[0].name + ".mp4"));
})();

About

Allows interaction with anime streaming sites in unconventional ways.

Resources

License

Stars

Watchers

Forks

Packages

No packages published