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

dbl-votes

v1.0.5

Published

This is a Node.js package that allows you to listen for vote events from the Top.gg API and easily store them in a database.

Downloads

30

Readme

dbl-votes

This is a Node.js package that allows you to listen for vote events from the Top.gg API and easily store them in a database.

Installation

To use this package, you first need to install it using npm:

npm install dbl-votes

Usage

To use the package, you need to require it and create a new instance of the TopggClient class. You can then listen for vote events and debug messages by registering event handlers with the on method.

const TopggClient = require("dbl-votes");

const topgg = new TopggClient({
    port: 3000,
    path: "/vote",
    // don't want to use a database? don't put any database details below!
    // if you want to use Mongo
    mongo: {
        url: "mongodb://localhost:27017",
        db: "bot",
        collection: "votes"
    },
    // or if you want to use Supabase
    supabase: {
        url: "https://supabaseurl.supabase.co",
        key: "supabasekey",
        table: "votes"
    },
    debug: true
});

topgg.on("vote", (bot, user) => {
    console.log(`${user} voted for ${bot}`);
});

topgg.on("debug", (msg) => {
    console.log(msg);
});

// to get if a user has voted
const hasVoted = await topgg.hasVoted("botid", "userid", "12h");
// returns `true` or `false`

Configuration

When creating a new TopggClient instance, you can pass in a configuration object with the following properties:

  • port (number, required): The port that the server should listen on.

  • path (string, required): The path that the top.gg API will send vote events to.

  • auth (string, optional): The authorization token that the top.gg API will send with vote events. If this is not specified, the server will not require authorization.

  • mongo (object, optional): Configuration for storing votes in a MongoDB database. The object should have the following properties:

  • url (string, required): The URL of the MongoDB server.

  • db (string, required): The name of the database to use.

  • collection (string, required): The name of the collection to use.

  • supabase (object, optional): Configuration for storing votes in a Supabase database. The object should have the following properties:

  • url (string, required): The URL of the Supabase server.

  • key (string, required): The API key to use.

  • table (string, required): The name of the table to use.

  • debug (boolean, optional): Whether to enable debug messages. Defaults to false.

Events

The TopggClient class emits the following events:

  • vote (bot: string, user: string): Emitted when a vote is received from the Top.gg API. The bot parameter is the ID of the bot that was voted for, and the user parameter is the ID of the user who voted.
  • debug (msg: string): Emitted when a debug message is generated. The msg parameter is the message that was generated. This event is only emitted if the debug option is enabled.

Methods

The TopggClient class has the following methods:

  • hasVoted(bot: string, user: string, time: string): Promise<boolean>: Checks if a user has voted for a bot within a certain time period. The bot parameter is the ID of the bot to check, the user parameter is the ID of the user to check, and the time parameter is the time period to check. The time parameter should be a string in the format Xh where X is the number of hours to check. For example, 12h would check if the user has voted within the last 12 hours. This method returns a promise that resolves to a boolean indicating whether the user has voted within the specified time period.