UNPKG

discord.js-self

Version:

A fork of discord.js with support of user accounts

15 lines (10 loc) 292 B
'use strict'; /** * Send a message using a webhook */ // Import the discord.js module const Discord = require('discord.js'); // Create a new webhook const hook = new Discord.WebhookClient('webhook id', 'webhook token'); // Send a message using the webhook hook.send('I am now alive!');