Files
discord.js/docs/examples/webhook.js
2017-04-16 00:50:37 +01:00

13 lines
274 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.send('I am now alive!');