Start
Installation
Section titled “Installation”npm i @hedystia/discordyarn add @hedystia/discordNodejs Version
Section titled “Nodejs Version”v18.7.0or higher
- Discord [Hedystia Discord]
Example
Section titled “Example”const {Client, Intents, Status} = require("@hedystia/discord");
const client = new Client({ token: "<TOKEN>", intents: [Intents.Flags.Guilds, Intents.Flags.Guild_Members, Intents.Flags.Message_Content, Intents.Flags.Guild_Messages], presence: { status: Status.Idle, activities: [ { name: "Hedystia", type: "Playing", }, ], },});
client.once("ready", () => { console.log("Bot on: " + client.user.username);});
client.on("messageCreate", (msg) => { if (msg.content == "!ping") { msg.reply({ content: "Pong!", }); }});