npm

@beohoang98/webhook-discord
TypeScript icon, indicating that this package has built-in type declarations

3.4.1 • Public • Published

Discord Webhooks

version npm

A simple Javascript file for nicely formatting Discord webhooks

Usage

It's simple

To initialise:

const webhook = require("webhook-discord")

const Hook = new webhook.Webhook("WEBHOOK URL")

Presets

To send an info message:

Hook.info("WEBHOOK NAME","Info")

To send a warning message:

Hook.warn("WEBHOOK NAME", "Warning message")

To send an error message:

Hook.err("WEBHOOK NAME","Error")

To send a success message:

Hook.success("WEBHOOK NAME","Yay we did something right")

Custom messages

To send custom messages, you should make use of the MessageBuilder.

const webhook = require("webhook-discord");

const Hook = new webhook.Webhook("WEBHOOK URL");

const msg = new webhook.MessageBuilder()
                .setName("Username")
                .setColor("#aabbcc")
                .setText("This is my webhook!")
                .addField("This", "is")
                .addField("my", "webhook!")
                .setImage("Image url")
                .setTime();

Hook.send(msg);

Installation

Either use npm:

npm install webhook-discord

Or clone from source:

git clone https://github.com/JoeBanks13/webhook-discord.git

License

MIT

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
3.4.12latest

Version History

VersionDownloads (Last 7 Days)Published
3.4.12

Package Sidebar

Install

npm i @beohoang98/webhook-discord

Weekly Downloads

2

Version

3.4.1

License

MIT

Unpacked Size

39.2 kB

Total Files

12

Last publish

Collaborators

  • beohoang_98