Skip to content
This repository was archived by the owner on Mar 3, 2021. It is now read-only.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dishook.js

A light weight discord webhook client

How to use without embed

const hook = require('dishook.js');
const DisHook = new hook.Client({
id: 'The id of the webhook' //must be a string
token: 'The token of the webhook must be a string',
});

DisHook.send("it's working");

With embed

const hook = require('dishook.js');
const DisHook = new hook.Client({
id: 'The id of the webhook' //must be a string
token: 'The token of the webhook must be a string',
});

const embed = new hook.EmbedBuilder()
.setTitle('Some cool title')
.setColor('#000000')
.serDescription('some coool description');
DisHook.send(embed)

About

A light weight discord webhook client

Resources

Stars

Watchers

Forks

Releases

Packages

Used by

Contributors

Languages