Socket
Socket
Sign inDemoInstall

discord-chat-filter

Package Overview
Dependencies
0
Maintainers
1
Versions
29
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    discord-chat-filter

Module to filter the chat of a discord channel.


Version published
Weekly downloads
4
decreased by-55.56%
Maintainers
1
Install size
350 kB
Created
Weekly downloads
 

Readme

Source

Discord Chat Filter ! LetsGoz

Module to filter the chat of a discord channel.

How to set the Chat Filter

const { ChatFilter } = require("discord-chat-filter") // Requiring the package
const chatFilter = new ChatFilter(message.content) // Create the chat filter

Functions


filterBadWord(['f*ck', 'sh*t']) // => If a member types 'f*ck' or 'sh*t', it will return true

filterLink() // => If a member sends a link, it will return true

filterMention() // => If a member mentions (@everyone, @here, @etc) it will return true

filterCaps() // => If a member sends a lot of caps, it will return true

Example


const Discord = require('discord.js'); // Requiring Discord
const intents = new Discord.Intents(); // Intents => Message.content intent is required
const client = new Discord.Client({ intents: 32767 }); // Bot

client.on('ready', async () => {
    console.log(`${client.user.username} is online`)
})

client.on('messageCreate', async (message) => { // Event emitted when a message is created

    const { ChatFilter } = require('discord-chat-filter'); // Requiring the package
    const chatFilter = new ChatFilter(message.content); // Creating the Chat Filter

    if (message.author.bot) return; // Bot messages are not taken

    if (chatFilter.filterBadWord(['f*ck', 'sh*t'])) { // Using the filterBadWord() Method
	message.delete() // Delete the message
	message.channel.send('No Badwords.') // Send a warning message
};

    if (chatFilter.filterLink()) { // Using the filterLink() Method
	message.delete() // Delete the message
	message.channel.send('No Links.') // Send a warning message
};

    if (chatFilter.filterMention()) { // Using the filterMention() Method
	message.delete() // Delete the message
	message.channel.send('No Mentions.') // Send a warning message
};

    if (chatFilter.filterCaps()) { // Using the filterCaps() Method
	message.delete() // Delete the message
	message.channel.send('Too many caps.') // Send a warning message
    
};

});

client.login('YOUR TOKEN')

Keywords

FAQs

Last updated on 28 Nov 2022

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc