chat-censoring
TypeScript icon, indicating that this package has built-in type declarations

1.0.8 • Public • Published

ChatCensoring

npm npm GitHub GitHub last commit (branch)


A tiny & simple package for your chat application that allows you to remove or censor bad words in chat.

Installation

npm:

npm i chat-censoring

Features

  • Check, if a message includes bad words
  • Check and censor (if needed) a message

Check message

This function takes your message as argument and checks, if it includes a bad word. As result it returns either true or false.

Parameters:

Parameter Usage
message The message you want to check

Example:

const censoring = require('chat-censoring');

const isInsult = censoring.check('You are great!');
console.log(isInsult); // Prints false
const censoring = require('chat-censoring');

const isInsult = censoring.check('You are fucking stupid!');
console.log(isInsult); // Prints true

Censor message

This function checks if there is a bad word in your provided message and replaces this word(s) with the character of your choise.

Parameter:

Parameter Usage
message The message you want to check and censor if needed
censoringChar The char you want to use to censor bad words

Example:

const censoring = require('chat-censoring');

const friendlyMessage = censoring.censorMessage('This is fucking cool!', '*');
console.log(friendlyMessage); // Prints 'This is ******* cool!'

Discord.js example

This package was created with the motivation to censor chat messages in Discord. Of course it can be used in other applications as well

Here is an example how you can use it for your Discord bot:

if(message.author.bot) return;

	if(!content.startsWith(prefix)) {

		if(censor.checkMessage(content)) {
			message.delete()
				.then(() => message.channel.send(`${message.author} said: ${censor.censorMessage(content, '#')}`))
				.catch(err => {
					console.log('An error occurred while censoring a message: ' + err);
					return message.channel.send('Unfortunately an error has occurred :(');
				});
		}
		return;
	}

Package Sidebar

Install

npm i chat-censoring

Weekly Downloads

4

Version

1.0.8

License

ISC

Unpacked Size

17.7 kB

Total Files

7

Last publish

Collaborators

  • toasty65