Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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();
```