Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/retronbv/beeptools
Tools for bot devs!
https://github.com/retronbv/beeptools
bot discord discord-bot discord-js node nodejs retron retronbv retronlabs
Last synced: 27 days ago
JSON representation
Tools for bot devs!
- Host: GitHub
- URL: https://github.com/retronbv/beeptools
- Owner: retronbv
- Created: 2021-12-13T23:07:25.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2021-12-15T15:29:23.000Z (about 3 years ago)
- Last Synced: 2025-01-10T19:56:55.493Z (28 days ago)
- Topics: bot, discord, discord-bot, discord-js, node, nodejs, retron, retronbv, retronlabs
- Language: JavaScript
- Homepage: https://npmjs.com/package/beeptools
- Size: 11.7 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ⚡️ beeptools
### Tools to make developing your bot easier!![npm badge](https://shields.io/static/v1?style=for-the-badge&logo=npm&label=beeptools&message=on%20npm&color=critical) ![gh badge](https://shields.io/static/v1?style=for-the-badge&logo=github&label=beeptools&message=on%20github&color=critical) ![GitHub stars](https://img.shields.io/github/stars/retronbv/beeptools.svg?style=for-the-badge&label=Stars&maxAge=2592000&logo=github&color=critical)
**(requires NodeJS 16 or higher!)**
Just simply import into your code!
```js
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:
```js
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!"})
})
```