@oreohq/builders
v2.1.1
Published
A set of builders that can used when creating command for a bot.
Readme
@oreohq/builders
A set of builders that you can use when creating commands for your bot.

📦 Installation
$ npm install @oreohq/builders # via npm
$ yarn add @oreohq/builders # yarn
$ pnpm add @orehq/builders # pnpm✨ Features
- Easy to use.
- Beginner friendly.
- Supports Intellisense.
🪴 Usage
const Builders = require('@oreohq/builders');
const Command = Builders.Command({
name: 'ping',
commandType: 'text',
aliases: ['p', 'latency'],
description: 'Shows the latency for the Client.',
executeText(client, message, args) {
// Code Goes Here
}
})
module.exports = Command;