1.3.2 • Published 4 months ago

anyanime v1.3.2

Weekly downloads
-
License
MIT
Repository
github
Last release
4 months ago

Installation

$ npm install anyanime

Options

OptionsDescriptionUsageParams
getAnimeAnime images - png / gifanyanime.getAnime({}){ type: "png", number: 10 }
checkUpdateCheck for new npm package updates.anyanime.checkUpdate(true)true or false

By default the type is png and number is 1. Max number of images you can ask for at a time is 10.

Functions

const anyanime = require("anyanime");

anyanime.getAnime({}).then(console.log); // Shows 1 random anime pfp image.

anyanime.getAnime({ type: "png", number: 10 }).then(console.log); // Shows 10 random anime pfp images.
anyanime.getAnime({ type: "gif", number: 10 }).then(console.log); // Shows 10 random anime gif pfp images.

// Both are async functions because it fetches the images from AnyAnime Api and that might take some time.

anyanime.checkUpdate(true);
  • Search for new npm package updates on bot startup! Latest version will be displayed in console.

Database

  • Png image database images size : 768
  • Gif image database images size : 183
  • The database size will be updated tho.

Usage

const anyanime = require("anyanime");

async function anime() {
    const anime = await anyanime.getAnime({ type: "png", number: 1 });
    console.log(anime); 

    // by default the type is png and number is 1.
}
// Both are async functions because it fetches the images from AnyAnime Api and that might take some time.
anime();

Check the tests/test.js file for more examples. Click here to go to the file.

Discord Bot

const Discord = require("discord.js");
const client = new Discord.Client();

const anyanime = require("anyanime");
anyanime.checkUpdate(true);

client.on("messageCreate", async (message) => {
  /* Plain Image */
  if (message.content === "plain") {
    const anime = await anyanime.getAnime({ type: "png", number: 1 });
    message.channel.send({ embeds: [anime[0]] });
  }

  /* Gif Image */
  if (message.content === "gif") {
    const animeGif = await anyanime.getAnime({ type: "gif", number: 1 });
    message.channel.send({ embeds: [animeGif[0]] });
  }

  /* Embed Image (D.JS Version 13) */
  if (message.content === "embed") {
    const anime = await anyanime.getAnime({ type: "png", number: 1 });
    const embed = new Discord.MessageEmbed().setImage(anime[0]);
    message.channel.send({ embeds: [embed] });
  }

  /* Embed Gif Image (D.JS Version 13) */
  if (message.content === "embed gif") {
    const animeGif = await anyanime.getAnime({ type: "gif", number: 1 });
    const embed = new Discord.MessageEmbed().setImage(animeGif[0]);
    message.channel.send({ embeds: [embed] });
  }
});

client.login("TOKEN");

For more information on how to use it visit

AnyAnime Api

If you dont want to use the npm package you can use the api instead.

The installation is given in the readMe file !

Package Made by: kurizu.taz on discord.

Huge Thanks To Pinterest.

  • For the images ofc !
1.3.2

4 months ago

1.3.1

5 months ago

1.3.0

6 months ago

1.2.45

7 months ago

1.2.43

10 months ago

1.2.44

10 months ago

1.2.42

11 months ago

1.2.41

12 months ago

1.2.40

12 months ago

1.2.39

12 months ago

1.2.38

1 year ago

1.2.28

1 year ago

1.2.29

1 year ago

1.2.30

1 year ago

1.2.31

1 year ago

1.2.34

1 year ago

1.2.35

1 year ago

1.2.33

1 year ago

1.2.36

1 year ago

1.2.37

1 year ago

1.2.26

2 years ago

1.2.23

2 years ago

1.2.24

2 years ago

1.2.25

2 years ago

1.2.22

2 years ago

1.2.21

2 years ago

1.2.20

2 years ago

1.2.19

2 years ago

1.2.17

2 years ago

1.2.16

2 years ago

1.2.15

2 years ago

1.2.14

2 years ago

1.2.13

2 years ago

1.2.12

2 years ago

1.2.11

2 years ago

1.2.10

2 years ago

1.2.9

2 years ago

1.2.8

2 years ago

1.2.7

2 years ago

1.2.6

2 years ago

1.2.5

2 years ago

1.2.4

2 years ago

1.2.3

2 years ago

1.2.2

2 years ago

1.2.1

2 years ago

1.1.2

2 years ago

1.1.1

2 years ago

1.0.0

2 years ago