/* Send a message using a webhook*/// import the discord.js moduleconstDiscord=require('discord.js');// create a new webhookconsthook=newDiscord.WebhookClient('webhook id','webhook token');// send a message using the webhookhook.sendMessage('I am now alive!');