Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/labsstar/auto-mod-discord
A Node.js package for automoderation in Discord servers.
https://github.com/labsstar/auto-mod-discord
auto-mod auto-moderation automation discord discord-js discordjs mod moderation
Last synced: about 1 month ago
JSON representation
A Node.js package for automoderation in Discord servers.
- Host: GitHub
- URL: https://github.com/labsstar/auto-mod-discord
- Owner: LabsStar
- License: cc0-1.0
- Created: 2023-05-20T01:50:27.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-05-20T21:09:45.000Z (over 1 year ago)
- Last Synced: 2024-11-30T20:36:56.816Z (2 months ago)
- Topics: auto-mod, auto-moderation, automation, discord, discord-js, discordjs, mod, moderation
- Language: JavaScript
- Homepage: https://guide.hyperstar.cloud/setup-automod-for-your-discord-server
- Size: 72.3 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![npm version](https://badge.fury.io/js/auto-mod-discord.svg)](https://badge.fury.io/js/auto-mod-discord)
[![GitHub stars](https://img.shields.io/github/stars/LabsStar/auto-mod-discord)](https://github.com/LabsStar/auto-mod-discord)
[![GitHub issues](https://img.shields.io/github/issues/LabsStar/auto-mod-discord)](https://github.com/LabsStar/auto-mod-discord/issues)
[![GitHub license](https://img.shields.io/github/license/LabsStar/auto-mod-discord)](https://github.com/LabsStar/auto-mod-discord/blob/main/LICENSE)# auto-mod-discord
A Node.js package for automoderation in Discord servers.
## Installation
Install the package using npm:
```shell
npm install auto-mod-discord
```## Usage
```javascript
const { Client } = require("discord.js"); // Import discord.js
const { AutoMod, LinkChecker, AntiSpam } = require("auto-mod-discord"); // Import the packageconst client = new Client({
intents: 32767, // All intents
});const autoMod = new AutoMod(client); // Default settings
const linkChecker = new LinkChecker(client); // Default settings
const antiSpam = new AntiSpam(client); // Default settings
```## Dependencies
This package has the following dependencies:
- discord.js
- chalk## Examples
All examples are in the [examples](https://github.com/LabsStar/auto-mod-discord/tree/main/examples) folder.
- AutoMod
- LinkChecker
- AntiSpam## Roadmap
- Server Backup
- User Reputation
- ~~Add AntiSpam~~
- ~~Add Analytics (Might be a separate method)~~## Contributing
Contributions are always welcome! Please read the [contribution guidelines](https://www.hyperstar.cloud/contributing)