super-easy-discordjs
v0.1.0
Published
Make discord.js 100x easier with simple helpers for embeds, replies, and more!
Downloads
7
Maintainers
Readme
Super Easy Discord.js
Make discord.js 100x easier! This package provides simple helpers for common tasks like embeds and replies.
Install
npm install super-easy-discordjsUsage Example
const { easyEmbed, easyReply } = require('super-easy-discordjs');
// Create an embed easily
const embed = easyEmbed({
title: 'Hello',
description: 'World',
color: 'Blue'
});
// In your command handler
await easyReply(interaction, embed, { ephemeral: true });Helpers
easyEmbed(options)easyReply(target, content, options)
More coming soon!
