disco-images
v0.2.3
Published
A powerful tool to generate anime images/gifs
Downloads
8
Readme
About
Disco-Images is a powerful tool for generating anime GIFs for Discord.js.
Installation
Node.JS v 12.0.0 or newer is required npm install disco-images
How To Use
const Discord = require('discord.js');
const client = new Discord.Client();
client.on('ready', () => {
console.log(`Logged in as ${client.user.tag}!`);
});
client.on('message', message => {
if (message.content === '!gif') {
}
});
client.login('token');