![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
simillar-commands
Advanced tools
A simple npm utility module for obtaining similar commands in Discord Bots projects.
npm install simillar-commands
Basic Example
Get an array with all simillar commands
// Import the Simillar Commands function
const { simillarCommands } = require('simillar-commands');
// Create an array of commands
const commands = [
'ping',
'say',
//....
'unsay'
];
// Get simillar commands
simillarCommands(commands, 'ping'); // ['ping']
simillarCommands(commands, 'pin'); // ['ping']
simillarCommands(commands, 'pong'); // ['ping']
simillarCommands(commands, 'sâY'); // ['say']
simillarCommands(commands, 'nsay'); // ['say', 'unsay']
simillarCommands(commands, 'foo'); // []
Normalize Commands
Normalize commands before use to prevent errors
// Import the Normalize function
const { normalize } = require('simillar-commands');
const command = 'CômmandExàmplê';
normalize(command); // commandexample
// Case insensitive usage
normalize(command, false); // CommandExample
Basic Bot 'Did you mean?' system
Show a react Embed to suggest a simillar command
// Import the Simillar Command and Normalize function
const { simillarCommand, normalize } = require('simillar-commands');
// Setup Discord Bot and Creates a Collection/Array of Commands
const Discord = require('discord.js');
const client = new Discord.Client();
const prefix = '!';
client.commands = new Discord.Collection();
client.commands.set('ping', { name:'ping', run: msg => msg.reply('pong!') });
client.commands.set('say', { name:'say', run: msg => msg.reply(msg.content.replace(`${prefix}say `, '')) });
// Creates a Command Handler
client.on('message', async(msg) => {
if(!msg.guild || !msg.content.startsWith(prefix) || msg.author.bot) return;
const cmd = normalize(msg.content.slice(prefix.length).split(' ')[0]);
let command = client.commands.get(cmd);
if(command) { // Run command normally
command.run(msg);
} else { // Search for simillar command
const simillar = simillarCommand(client.commands, cmd);
// Creates a Embed
const embed = new Discord.MessageEmbed()
.setDescription(`Did you mean **${simillar}**?`);
const msgEmbed = await msg.reply(embed);
msgEmbed.react('✅');
// Setup the Reaction Collector
const filter = (reaction, user) => {
if(reaction.emoji.name != '✅') return false;
return(user.id == msg.author.id)
}
msgEmbed.createReactionCollector(filter, { max: 1 })
.on('collect', () => { // Run command normally
command = client.commands.get(simillar);
command.run(msg);
});
}
});
// Start Bot
client.login('TOKEN');
Case Insensitive
You can also add a param to not ignore the case.
// Import module functions
const { normalize, simillarCommands, simillarCommand } = require('simillar-commands');
normalize('CômmÁnD'); // command
normalize('CômmÁnD', false); // CommAnD
const commands = ['ban', 'unban', 'BaN' , 'ping'];
simillarCommands(commands, 'bam'); // ['ban', 'BaN']
simillarCommands(commands, 'bam', false); // ['ban']
simillarCommands(commands, 'BaM', false); // ['BaN']
simillarCommands(commands, 'nban'); // ['ban, 'unban', 'BaN']
simillarCommands(commands, 'nBaN', false); // ['BaN']
FAQs
A simple npm utility module for obtaining similar commands in Discord Bots projects.
The npm package simillar-commands receives a total of 0 weekly downloads. As such, simillar-commands popularity was classified as not popular.
We found that simillar-commands demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.