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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@thenamelessdev/discojs

v1.1.0

Published

DiscoJs is a tool to help you build interaction endpoint Discord bots. Using this you can make a serverless Discord bot.

Downloads

1,080

Readme

DiscoJs

DiscoJs is a tool to help you build interaction endpoint Discord bots. Using this you can make a serverless Discord bot. https://www.npmjs.com/package/@thenamelessdev/discojs

Config

To configure you have to call the config function and give it theese params:

  • token:
    • Your Discord bot token
  • errorChannelId:
    • Your Discord channel for errors. If there is an error with anything the error message will be sent there and into the console. Make sure your bot has send messages access to it

Functions

Message: Interact with message endpoints

All message functions that create or modify a message will return a message object

  • sendMessage
    • channelId: the channel ID where the message should be sent
    • message: the message (optional)
    • embeds: an array of embed objects (optional)
  • deleteMessage
    • messageId: the ID of the message you want to delete
    • channelId: the channel ID of the message you want to delete
  • replyMessage
    • messageId: the message you want to reply to
    • channelId: the channel the message you want to reply to is in
    • message: the message you want to reply with (optional)
    • embeds: an array of embed objects (optional)
  • editMessage channelId:
    • channelId: the channel ID of the message you want to edit
    • messageId: the message ID of the message you want to edit
    • message: the message (optional)
    • embeds: an array of embed objects (optional)
  • pinMessage:
    • channelId: the channel ID of the channel the message is in
    • messageId: the ID of the message you want to pin
  • unpinMessage:
    • channelId: the channel ID of the channel the message is in
    • messageId: the ID of the message you want to unpin

Webhook: Interact with webhook endpoints (does not require config)

  • executeWebhook
    • url: the webhook url (example: https://discord.com/api/v10/webhooks/webhookid/webhooktoken)
    • message: the message (optional)
    • embeds: an array of embed objects (optional)
  • deleteWebhook
    • url: the webhook url to delete
  • editWebhookMessage:
    • url: the webhook url
    • messageId: the message id you want to edit
    • message: the message (optional)
    • embeds: an array of embed objects (optional)

Useful: useful things

  • api:
    • endpoint: the endpoint you want to interact with
    • method: the method you want to send the api request with (example: POST)
    • body: the json body (optional)
    • auth: true if you want to add the auth headers

Guilds: ineract with guild api

  • ban:
    • guildId: the server id of the server you want to ban
    • userId: the id of the user you want to ban
  • unban:
    • guildId: the server id of the server you want to unban
    • userId: the id of the user you want to unban
  • kick:
    • guildId: the server id of the server you want to kick
    • userId: the id of the user you want to kick