cordclient
v2.14.4
Published
A discord.js framework written in typescript, with a integrated lavalink client.
Downloads
27
Maintainers
Readme
CordClient
Discord.js framework built with TypeScript.
Documentation • Support Server • Github
- 🔧 Strongly Typed
- 🏋 It does the heavy-lifting
- 🔰 Simple for beginners
Installation
npm i cordclient
Example usage
const { CordClient } = require('cordclient');
const bot = new CordClient({
token: "...",
owners: "",
registry: {
prefix: "!",
typing: true
}
});
bot.login("");
For more examples, go to the Usage file.