Files
discord.js/docs/examples/webhook.js
Schuyler Cebulskie 7c97244854 Move to new docgen
2016-11-22 18:24:29 -05:00

13 lines
281 B
JavaScript

/*
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.sendMessage('I am now alive!');