New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

discord-moderation

Package Overview
Dependencies
Maintainers
1
Versions
42
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

discord-moderation

discord-moderation will simplify creating moderation system to your discord bot.

2.2.2
unpublished
latest
Source
npm
Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

Welcome!

Welcome, this is 'discord-moderation' module!
discord-moderation will simplify creating Moderation System for Your Discord Bot!

Features

[🔑] Built in TypeScript
[⚙] 100% Promise-based
[🙂] TypeScript Support
[👍] Discord.JS v13

Requirements

[1] NodeJS v16 or Above
[2] Discord.JS

Quick Example

const { Client, Intents } = require("discord.js");
const { Moderation } = require("discord-moderation");

const client = new Client({
  intents: [
    "GUILDS",
    "GUILD_MESSAGES",
    "GUILD_PRESENCES",
    "GUILD_MEMBERS",
    "GUILD_BANS",
  ],
});

const moderation = new Moderation(client, {
  dbPath: "./",
  locale: "en-US",
  defaultSystems: {
    autoRole: false,
    antiSpam: false,
    antiInvite: false,
    antiJoin: false,
    antiLink: false,
    blacklist: false,
    ghostPing: false,
    logSystem: false,
  },
});

This module uses

[1] Discord.JS
[2] colors
[3] ms
[4] node-fetch
[5] enmap (database)

[1] Documentation
[2] Module Author
[3] Support Server

Keywords

discord

FAQs

Package last updated on 12 Jun 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts