Warning
This readme is work in progress!
Seyfert is the ultimate Discord framework! With its highly efficient interaction with the Discord API, you can achieve anything you set your mind to.
Seyfert has a good scalability, strict types, smooth developing experience...
more questions soon...
Note
You NEED Node.js 18>= for this to work, also we recomended Node.js 20 LTS and Bun latest
pnpm add seyfert
You may use your preferred package manager, for this example I am using PNPM since is more efficient.
import { Client } from 'seyfert';
const client = new Client();
(async () => {
await client.start();
await client.uploadCommands().catch(e => {
console.error(JSON.stringify(e, null, 2))
process.exit(1)
})
})();