Maclary
Maclary Lists
Statistics auto poster for all major Discord bot lists
npm install @maclary/lists discord.js@dev
yarn add @maclary/lists discord.js@dev
pnpm add @maclary/lists discord.js@dev
🤔 About
Lists is a library that helps you post your bot's statistics to all the Discord bot lists you want. It's easy to use and supports all the major bot lists. Lists is still in its early stages, many more features are planned. If you find any bugs or have any suggestions, please open an issue.
📚 Documentation
Documentation and guides coming soon |
---|
🌐 Examples
An example is worth a thousand words. This example shows how to use the library in TypeScript, but it also works in JavaScript using either require
or import
.
import { Poster, Lists } from '@maclary/lists';
const lists = [
new Lists.TopGG('botid', 'top api token'),
new Lists.DiscordsCom('botid', 'discords api token'),
...
];
const poster = new Poster(lists, {
shardCount: () => client.shard?.count ?? 1,
guildCount: () => client.guilds.cache.size,
userCount: () => client.guilds.cache.reduce((a, b) => a + b.memberCount, 0),
voiceConnectionCount: () => client.voice.connections.size,
});
poster.startAutoPoster();
poster.stopAutoPoster();
🤖 Supported Bot Lists
Icon | Name | Website | Class Name |
---|---|---|---|
Blist | blist.xyz | Blist | |
Botlist.me | botlist.me | BotListMe | |
Bots on Discord | bots.ondiscord.xyz | BotsOnDiscord | |
Discord Bot List | discordbotlist.com | DiscordBotList | |
discord-botlist.eu | discord-botlist.eu | DiscordBotListEU | |
Discord Bots | discord.bots.gg | DiscordBots | |
Discord Extreme List | discordextremelist.xyz | DiscordExtremeList | |
Discord Labs | bots.discordlabs.org | DiscordLabs | |
Discordlist | discordlist.gg | DiscordList | |
Discords.com | discords.com | DiscordsCom | |
Discord Services | discordservices.net | DiscordServices | |
Disforge | disforge.com | Disforge | |
Infinity Bot List | infinitybotlist.com | InfinityBotList | |
Motion Botlist | motiondevelopment.top | MotionBotList | |
TopCord | topcord.xyz | TopCord | |
Top.gg | top.gg | TopGG | |
Universe List | universe-list.xyz | UniverseList | |
Void Bots | voidbots.net | VoidBots | |
Wonder Bot List | wonderbotlist.com | WonderBotList | |
Yet Another Bot List | yabl.xyz | YABL |