buzzes.djs
v1.3.1
Published
## Getting Started
Readme
Basic Discord.js FrameWork to make bots easily
Getting Started
const { Client } = require("buzzes.djs"); //requires the lib
const client = new Client();
const prefix = "!";
client.on("ready", () => {
client.init({ commandDir: "commands", useDefaultCommands: true }); //commandDir must be a string
});
client.on("message", (msg) => {
if (!msg.guild || msg.author.bot || !msg.content.startsWith(prefix)) return;
const args = msg.content.slice(prefix.length).trim().split(" ");
client.executeCommand(msg, args); //execute string, this is handled
});
client.login("Your bot token");Commands

You'll need to create a category folder inside of command-Dir, then create your commands files inside of this folder
Basic Command Structure
const { Permissions } = require("buzzes.djs");
module.exports = {
name: "Command-name-Here",
aliases: [], // Aliases. optional
usage: "commad usage", // Optional,
minArgs: 1, //Min Arguments for command. optional
minPermissions: [""], // Array of Permissions. Min Permissions to execute this command. you can view it in node_modules/buzzes.djs/lib/Permissions.js in ValidPermissions. optional
botminPermissions: [""], // Array of Permissions. Min Permissions to the bot execute this command. you can view it in node_modules/buzzes.djs/lib/Permissions.js in ValidPermissions. optional
/**
* For Permissions you can use "Permissions" from Buzzes.djs
* to get AutoComplete in Permissions
*/
run: (client, msg, args) => {
/**
* Code here
*/
},
};ChangeLog
- Added Extensions
