SDK v0.0.1 Live
Analytics for Discord Bots.
Monitor guild joins, leaves, and bot activity with few lines of code.
Connected Bot
MemeOClock
Online
Total Guilds
12,842
Last Seen
Just now
Guild Joins
+142
Guild Leaves
-12
index.ts
import { Client, GatewayIntentBits } from "discord.js";
import { Stats } from "@dstats/sdk";
import { DiscordJSAdapter } from "@dstats/discord.js";
const client = new Client({
intents: [GatewayIntentBits.Guilds],
});
new Stats({
apiKey: process.env.DSTATS_API_KEY!,
adapter: new DiscordJSAdapter(client),
});
client.login(process.env.DISCORD_BOT_TOKEN);