discord-webhook-wrapper
TypeScript icon, indicating that this package has built-in type declarations

1.0.2 • Public • Published

discord-webhook-wrapper

A very simple wrapper for creating a discord.js WebhookClient object

Install

npm install discord-webhook-wrapper

Usage

import discordWebhookWrapper from 'discord-webhook-wrapper';

const webhookClient = discordWebhookWrapper({discordWebhookUrl: 'https://discord.com/api/webhooks/1337/example-token'});
// ...

const webhookClientUsingIdAndToken = discordWebhookWrapper({discordWebhookId: '1337', discordWebhookToken: 'example-token'});
// ...

API

discordWebhookWrapper(webhookConfig)

Creates a discord.js WebhookClient object from either a Discord Webhook URL or from both a Discord Webhook ID and a token.

webhookConfig

discordWebhookUrl?

Type: string

URL to the Discord Webhook containing both the ID and the token.

discordWebhookId?

Type: string

ID to the Discord Webhook. Needs to be used together with the token.

discordWebhookToken?

Type: string

Token to the Discord Webhook. Needs to be used together with the ID.

Readme

Keywords

Package Sidebar

Install

npm i discord-webhook-wrapper

Weekly Downloads

2

Version

1.0.2

License

MIT

Unpacked Size

5.49 kB

Total Files

5

Last publish

Collaborators

  • knutkirkhorn