UNPKG

fast-discord-js

Version:

FastDiscordJS is an unofficial extension of the 'discord.js' library. Our extension aims to simplify the development of Discord bots, promoting cleaner code and easier maintenance.

9 lines (7 loc) 283 B
import FastClient from "class/Client"; import { getEnv } from "./functions/utils"; const client = new FastClient({ autoImport: ["src/test/commands"]}); client.login(getEnv("TOKEN")); client.on("ready", () => { console.log("Bot is ready as " + client.user?.tag); });