zikeji-discord-sensei
v1.0.7
Published
A Bot framework for making Bot writing easier and cleaner. Basically a wrapper for Discord.js
Downloads
2
Readme
About.
discord-sensei is a node.js module that makes the development of Discord Bots extremely easy. It serves as a wrapper around discord.js with a workflow thats easy to get used to and is well organized.
discord.js is a great library for interacting with the Discord API and it covers nearly 100% of the Entire API.
Simplicity, and Being Straightforward to use while having a clean workflow was the inspiration behind this project.
Some of the Features.
- Built on discord.js, Same Coding Practices!
- Keeps things Simple, Clean and Organized.
- Automated Message and Argument Parsing.
- Flexible Command Class.
- Arguments with Data types including Strings, Numbers, Discord.js Classes.
- Convient Permissions Setup
- Written in TypeScript.
- Many many more features to come.
Who is this for ?
If you want a Framework that lets users do all the fun stuff without letting them worry about the Management/Boilerplate work underneath all while keeping everything clean and organized, then you'd definitely be interested in checking this out!
Installation.
npm install --save discord-sensei discord.js
Basic Setup.
const { SenseiClient } = require("discord-sensei");
const path = require("path");
const client = new SenseiClient({
prefixes: ["p!", "p>"],
commandsDirectory: path.join(__dirname, "/commands")
});
client.login("YOUR.BOT.TOKEN");