Discord.js framework
npm install trivious
yarn add trivious
pnpm add triviousRequires Node.js 18+
// src/index.ts
import { TriviousClient } from "trivious";
import { GatewayIntentBits } from "discord.js";
const client = new TriviousClient({
credentials: {
tokenReference: "BOT_TOKEN",
clientIdReference: "CLIENT_ID",
},
corePath: "core", // Folder containing your bot's processes
intents: [GatewayIntentBits.Guilds],
ownerUserIds: ["1234"],
});
(async () => {
try {
await client.start();
// Registers all commands, events, components, modules;
// Deploys slash commands globally and then logs into the bot
// To separately deploy commands - use client.deploy() followed by client.login()
} catch (err: unknown) {
const error = err as Error;
console.error("Failed to start bot:", error);
}
})();Trivious automatically includes and inserts clientReady and interactionCreate handlers, which can be overwritten.
It is recommended to use the default interactionCreate handler, which requires zero setup in your own code.
These default events can be found in src/features/events/presets in the Trivious repository.
Examples for commands, components, events and modules can be found at https://github.com/commonly-ts/discord-bot-template/tree/main/templates.
// commands/debug/index.ts
import { ApplicationCommandType, SlashCommandBuilder } from "discord.js";
import { SlashCommandData } from "trivious";
export default {
active: true,
context: "SlashCommand",
commandType: ApplicationCommandType.ChatInput,
flags: ["Cached", "EphemeralReply", "DeferReply"],
data: new SlashCommandBuilder().setName("debug").setDescription("Debug commands"),
} satisfies SlashCommandData;// commands/debug/config/index.ts
import { Collection, SlashCommandSubcommandGroupBuilder } from "discord.js";
import { SlashSubcommandGroupData } from "trivious";
export default {
context: "SlashSubcommandGroup",
data: new SlashCommandSubcommandGroupBuilder()
.setName("config")
.setDescription("Config commands"),
subcommands: new Collection(),
} satisfies SlashSubcommandGroupData;Subcommands go in the same directory as the subcommand group file and are auto-detected.
// commands/debug/ping.ts
import { ApplicationCommandType, SlashCommandSubcommandBuilder } from "discord.js";
import { interactionReply, SlashSubcommandData } from "trivious";
export default {
active: true,
context: "SlashSubcommand",
commandType: ApplicationCommandType.ChatInput,
data: new SlashCommandSubcommandBuilder().setName("ping").setDescription("Ping pong!"),
async execute(client, interaction) {
const ping = (await interaction.fetchReply()).createdTimestamp - interaction.createdTimestamp;
await interactionReply({
interaction,
replyPayload: {
content: `Pong!\nBot latency: ${ping}ms, API latency: ${client.ws.ping.toString()}ms`,
},
flags: ["EphemeralReply"],
});
},
} satisfies SlashSubcommandData;Any project structure (e.g. type-based, feature-based) is acceptable as long as everything you expect to be registered are within the core directory.
For example, if all of your commands, components, events and modules are anywhere inside src/features, assuming they export the correct data, they will be detected and registered to the client.
The only required specific structure are for slash commands, as shown below.
command/
├── index.ts
├── subcommand.ts
└── subcommand-group/
├── index.ts
└──subcommand.ts