0xDevansh / djs-marshal-utils

Utilities for making bots with discord.js

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

djs-marshal-utils

Utilities for making bots with discord.js

This package does not require djs-marshal, it is just named so because djs-utils exists

Installation

This package requires discord.js

npm install discord.js
# with npm
npm install djs-marshal-utils

# with yarn
yarn add djs-marshal-utils

Importing

Example: Importing errorEmbed

// import whole package
import Utils from 'djs-marshal-utils';

Utils.embeds.errorEmbed();

// import group
import embeds from 'djs-marshal-utils/embeds'

embeds.errorEmbed();

// import specific util
import { errorEmbed } from "djs-marshal-utils/embeds";

Documentation

Documentation site

About

Utilities for making bots with discord.js

License:MIT License


Languages

Language:TypeScript 87.1%Language:JavaScript 12.9%