greathooks
v1.0.0
Published
Great Hooks - Easy method to create and manage discord webhooks
Downloads
9
Maintainers
Readme
GreatHooks 1.0.0
const gh = require("greathooks");
gh.create(text); //create script to send a normal text with webhook
gh.create(embed); //create script to send a embed message with webhook
gh.hookpost("WebHook URL", {
title: 'Hello World!', // Send a Embed message.
description: 'test'
})
gh.hookpost('WebHook URL', {
text: 'This is a regular text message.' // Send a standart message
});