discord-moderator
TypeScript icon, indicating that this package has built-in type declarations

1.1.6 • Public • Published

discord-moderator


Support server NPM version NPM downloads

Welcome

Welcome! This 'discord-moderator' module!
This is a simple module for adding moderation to Discord bot.

Installation

Please note: Node.js 14.0.0 or newer is required.
All types in brackets mean the type of what the method or event returns.

Install discord-moderator

$ npm install discord-moderator

Features

  • Simple & easy to use 👍
  • Beginner friendly 😄
  • Minimalistic option constructor 🔧
  • TypeScript Support 🔑
  • Flexible and customizable 🛠️
  • 100% Promise-based ⚙️

Module Managers

  • 'BlacklistManager' - Manager that enables Blacklist System.
  • 'MuteManager' - Manager that enables Mute System.
  • 'PunishmentManager' - Manager that enables Blacklist System.
  • 'RolesManager' - Manager that enables Roles System.
  • 'UtilsManager' - Manager that includes some utils for other managers.
  • 'WarnManager' - Manager that enables Warn System.

Module Constructor Options

  • 'options.muteManager' - Property responsible for the status of the muting manager.

  • 'options.warnManager' - Property responsible for the status of the warning manager.

  • 'options.blacklistManager' - Property responsible for the status of the blacklist manager.

  • 'options.muteConfig.tableName' - Property responsible for the name of the table for the mute manager.

  • 'options.muteConfig.checkCountdown' - Property responsible for the checking interval of all mutes.

  • 'options.warnConfig.tableName' - Property responsible for the name of the table for the warn manager.

  • 'options.warnConfig.maxWarns' - Property responsible for the maximum number of warnings.

  • 'options.warnConfig.punishment' - Property responsible for the method of punishing the user. Available: tempmute, mute, kick, ban.

  • 'options.warnConfig.muteTime' - Property responsible for the mute time for the tempmute punishment method.

  • 'options.blacklistConfig.tableName' - Property responsible for the name of the table for the blacklist manager.

  • 'options.blacklistConfig.punishment' - Property responsible for the method of punishing the user. Available: kick, ban.

Quick Initialization Example

const Discord = require('discord.js');

const client = new Discord.Client();
const Moderator = require('discord-moderator');
const moderator = new Moderator(client);

client.on('ready', () => {
  console.log('Bot started!');
})

client.login('YOUR_BOT_TOKEN_HERE');

Examples

Click here to see JavaScript examples.

Useful Links

Thanks for using Discord Moderator

Dependents (0)

Package Sidebar

Install

npm i discord-moderator

Homepage

dm-docs.tk

Weekly Downloads

8

Version

1.1.6

License

MIT

Unpacked Size

117 kB

Total Files

17

Last publish

Collaborators

  • xyligan