Discord.hx is a powerful Haxe library that implements the Discord API, making it easy to build bots and integrate with Discord.
Get up and running in 5 minutes with our quick start guide.
Getting Started// Example bot setup
import discord.Discord;
var bot = new Discord.Bot("YOUR_TOKEN");
bot.onMessage(function(message) {
if (message.content == "!ping") {
bot.sendMessage(message.channel, "Pong!");
}
});