simpllest
v1.0.30
Published
simpllest is a simple function package, currently beta and still getting updated everyday.
Readme
simpllest is a simple function package, currently beta and still getting updated everyday.
Generating passwords for a discord.js bot
const { SlashCommandBuilder, EmbedBuilder } = require('discord.js');
const generatePassword = require('simpllest');
module.exports = {
data: new SlashCommandBuilder()
.setName('password')
.setDescription('generates a random password'),
async execute(interaction) {`
const passwordPromise = generatePassword(10);
const password = await passwordPromise;
await interaction.reply(`${password}`);
}};'(10)' is the amount of characters the password will have.
how to install simpllest
npm install simpllest
