beeptools

2.1.0 • Public • Published

⚡️ beeptools

Tools to make developing your bot easier!

npm badge gh badge GitHub stars

(requires NodeJS 16 or higher!)

Just simply import into your code!

const beeptools = require("beeptools")
beeptools.RegisterSlash(process.env.TOKEN, guildId, clientId, "path/to/slash/commands/dir");
// Now my slash commands are up to date :D

What you can do (so far 😏):

  • Easily update slash commands as you develop
  • Create slash commands easily
  • Create a "keep alive" webserver

Here is how your slash command file should look:

const { Builders } = require('beeptools');

// I can easily make a slash command with the slash command builder!

module.exports = Builders.SlashCommandBuilder.Builder(Builders.SlashCommandBuilder.MetaBuilder("ping", "Simple ping command!"), (interaction)=>{
  await interaction.reply({content:"Ping!"})
})

Package Sidebar

Install

npm i beeptools

Weekly Downloads

1

Version

2.1.0

License

ISC

Unpacked Size

4.08 kB

Total Files

5

Last publish

Collaborators

  • retronbv