'use strict';
/**
* Send a message using a webhook
*/// Import the discord.js moduleconstDiscord = require('discord.js');
// Create a new webhookconst hook = newDiscord.WebhookClient('webhook id', 'webhook token');
// Send a message using the webhook
hook.send('I am now alive!');