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 🙏

© 2026 – Pkg Stats / Ryan Hefner

discordthings-api

v1.1.6

Published

Official API Wrapper for DiscordThings.com

Downloads

53

Readme

DiscordThings API Wrapper

npm version license Discord

The official Node.js library for interacting with the DiscordThings.com API. Efficiently manage your bot's stats, synchronize slash commands, and verify user votes with a modern, promise-based wrapper.


Features

  • Post Stats: Keep your bot's server and shard count up to date.
  • Vote Verification: Reward your users by checking if they've voted for your bot.
  • Command Sync: Push your bot's Slash Commands directly to our platform for better visibility.
  • Lightweight: Zero dependencies (only axios).

Installation

npm install discordthings-api

Quick Start

First, obtain your API Token from your Developer Profile on DiscordThings.

const DiscordThings = require('discordthings-api');

// Initialize the client
const dthings = new DiscordThings('YOUR_USER_API_TOKEN');

const BOT_ID = '123456789012345678'; // Your Bot ID

1. Update Server Count

async function updateStats() {
    try {
        await dthings.postStats(BOT_ID, 1250, 0, 50000, [
            { name: "play", count: 120 },
            { name: "profile", count: 50 },
        ]);
        console.log('Stats updated on DiscordThings!');
    } catch (err) {
        console.error('Error updating stats:', err.message);
    }
}

2. Verify Votes

async function checkVote(userId) {
    try {
        const result = await dthings.checkVote(BOT_ID, userId);
        
        if (result.voted) {
            console.log('User has voted!');
        } else {
            console.log('User hasn\'t voted in the last 12 hours.');
        }
    } catch (err) {
        console.error('Error checking vote:', err.message);
    }
}

3. Sync Slash Commands

async function syncCommands() {
    const commands = [
        {
            name: 'ping',
            description: 'Check bot latency',
            type: 1 // Chat Input
        },
        {
            name: 'help',
            description: 'Get list of commands',
            options: [{ name: 'cmd', description: 'Command to check', type: 3 }]
        }
    ];

    try {
        await dthings.syncCommands(BOT_ID, commands);
        console.log('Commands synced successfully!');
    } catch (err) {
        console.error('Sync failed:', err.message);
    }
}

API Reference

new DiscordThings(token, [options])

  • token (String): Your personal API Token.
  • options.baseUrl (String): Override default API endpoint.

postStats(botId, serverCount, [shardCount], [userCount], [commandStats])

  • Updates the bot's server and shard presence.
  • userCount: Total user count (Number).
  • commandStats: Array of { name, count }.
  • Returns Promise<Object>.

checkVote(botId, userId)

  • Checks for a valid vote cast within the last 12 hours.
  • Returns Promise<{ voted: Boolean, lastVote: Date, nextVote: Date }>.

syncCommands(botId, commands)

  • Synchronizes your bot's command list with the platform.
  • commands: Array of Command Objects (name, description, options, type).
  • Returns Promise<Object>.

Built with love by the DiscordThings Team.