npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

discordbotlist

v1.1.1

Published

Integrate with discordbotlist.com and support voting rewards and promote your bot's stats on the website.

Downloads

189

Readme

discordbotlist

Easily add support for voting and display your bot's stats on discordbotlist.com with just a few lines of code. This package provides support out of the box for discord.js and eris bots, but can easily be adapted to work with any library of your choosing.

Installation and Requirements

This package requires Node 16 or newer. If you're using discord.js v14, you should already meet this requirement. Install discordbotlist using:

npm i --save discordbotlist

Creating an API token

To post stats and fetch recent votes using this package, you'll need a discordbotlist API token. This is not your Discord bot token. Do not use your Discord bot token as an API token or webhook secret. To create an API token for your bot:

Setting up a Webhook Secret

To use webhooks, you will first need to create a Webhook Secret. This is not your Discord bot token. Do not use your Discord bot token as an API token or webhook secret. To configure your bot's Webhook Secret:

  • Visit its page on discordbotlist.com
  • Click the "Edit" button
  • Enter a value in the Webhook Secret input and click "Edit"

Creating a Client

For most, the easiest way to use this package will be by creating a client using the wrapper function for your library.

Creating a Client (discord.js)

import { createDjsClient } from "discordbotlist";
import { Client, GatewayIntentBits } from "discord.js";

const client = new Client({ intents: [GatewayIntentBits.Guilds] });

client.on("ready", () => {
    const dbl = createDjsClient(DBL_API_TOKEN, client);
});

client.login(TOKEN);

Creating a Client (eris)

import { createErisClient } from "discordbotlist";
import { Client } from "eris";

const client = new Client(TOKEN, { intents: ["guilds"] });

client.on("ready", () => {
    const dbl = createErisClient(DBL_API_TOKEN, client);
});

client.connect();

Posting Bot Stats

After creating a client, you can start automatically posting your bot's stats to discordbotlist:

dbl.startPosting(/* optional interval, defaults to every hour */);

Setting up Voting

This package can be used to implement voting by either exposing a webhook endpoint discordbotlist will call, or periodically checking for recent votes. The former is recommended in most cases and should be preferred if it can be used for your bot.

Using Webhooks

This package provides express middleware that can be used to easily set up vote rewards using webhooks.

Using Webhooks (with a Client)

After creating a dbl client, it can be used to set up vote rewards with an event-based interface:

import express from "express";

const app = express();
app.use(express.json());

app.post("/dbl", dbl.webhook(DBL_WEBHOOK_SECRET));

dbl.on("vote", vote => {
    console.log(`${vote.username}#${vote.discriminator} voted!`);
});

app.listen(PORT);

Using Webhooks (no Client)

If you don't want to use a client, you can use the upvoteListener function instead:

import { upvoteListener } from "discordbotlist";
import express from "express";

const app = express();
app.use(express.json());

app.post(
    "/dbl",
    upvoteListener(DBL_WEBHOOK_SECRET, vote => {
        console.log(`${vote.username}#${vote.discriminator} voted!`);
    })
);

app.listen(PORT);

Using Polling

If you're running in an environment where webhooks aren't suitable, you can also support voting by using polling. To use polling, call Client#startPolling, then listen for the vote event just like webhooks:

dbl.startPolling(/* optional interval, defaults to every five minutes */);

dbl.on("vote", vote => {
    console.log(`${vote.username}#${vote.discriminator} voted!`);
});

Post Bot Commands

If your bot uses slash commands, you can display your bot's commands on DBL! You can post your commands to DBL the same way you post them to Discord. Use Client#postBotCommands to post your bot's commands:

dbl.postBotCommands([
    {
        name: "help",
        description: "View a list of the bot's commands.",
    },
]);

Discord Bot List API

This package also provides a strongly typed interface for interacting with DBL's REST API if desired. All types and functionality for this API wrapper is accessible from discordbotlist/api. For example, to manually post a bot's stats without a Client instance:

import { postBotStats } from "discordbotlist";

postBotStats(DBL_API_TOKEN, DISCORD_BOT_ID, {
    guilds: 100,
    users: 1000,
});