aboutsummaryrefslogtreecommitdiff
path: root/node_modules/discord.js/docs/examples/webhook.js
blob: 13cf7c88327594e7a5b03135e607e441b856783f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
/*
  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!');