constDiscord=require("discord.js");constclient=newDiscord.Client();constChat=require("easy-discord-chatbot");constchat=newChat({name: "your bot name"});client.on("ready",()=>{console.log(`Ready! Logged in as ${client.user.tag}!`);});client.on("message",asyncmessage=>{if(message.channel.name==="chat"&&!message.author.bot){letreply=awaitchat.chat(message.content)message.channel.send(reply)}});client.login("Your Token Here");