Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/therealbenpai/botclient
A simple Discord.JS bot client
https://github.com/therealbenpai/botclient
bot client discord helper simple utility
Last synced: 5 days ago
JSON representation
A simple Discord.JS bot client
- Host: GitHub
- URL: https://github.com/therealbenpai/botclient
- Owner: therealbenpai
- License: gpl-3.0
- Created: 2024-05-06T13:47:21.000Z (6 months ago)
- Default Branch: master
- Last Pushed: 2024-09-30T19:36:24.000Z (about 2 months ago)
- Last Synced: 2024-11-10T20:08:13.710Z (7 days ago)
- Topics: bot, client, discord, helper, simple, utility
- Language: TypeScript
- Homepage:
- Size: 121 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
# Discord.JS Bot Client (djs-client)
A simple Discord.JS bot client that can be used to create a bot for Discord.
## Installation
```bash
npm install @therealbenpai/djs-client
```## Usage
```javascript
const { Client } = require('@therealbenpai/djs-client');const client = new Client('PREFIX', 'TOKEN', 'CLIENT_ID', {
buttonsDir: '';
commandsDir: '';
contextMenusDir: '';
eventsDir: '';
modalComponentsDir: '';
predefinedMessagesDir: '';
selectMenusDir: '';
triggersDir: '';
})client.start();
```