@beohoang98/webhook-discord
v3.4.1
Published
A simple Javascript file for nicely formatting Discord webhooks
Downloads
7
Maintainers
Readme
Discord Webhooks
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