@wingetcord/wingetcord
v2.0.0
Published
A high-performance TypeScript Discord framework
Downloads
173
Maintainers
Readme
💎 WingetCord
A high-performance TypeScript Discord framework.
Install
npm install @wingetcord/wingetcordQuick Start
import { Client, Intents } from '@wingetcord/wingetcord';
const client = new Client({
token: 'YOUR_BOT_TOKEN',
intents: ['GUILDS', 'GUILD_MESSAGES', 'MESSAGE_CONTENT']
});
client.onReady((user) => {
console.log(`Logged in as ${user.tag}`);
});
client.onMessage(async (msg) => {
if (msg.content === '!ping') {
await msg.reply('Pong!');
}
});
client.connect();Features
- ⚡ Fast REST with
undiciconnection pooling - 🛡️ Resilient Gateway with auto-reconnect
- 💎 Expressive fluent API
- 🧩 Zero-config command & event handlers
- 🔌 Plugin system
- 📦 Built-in caching (LRU, LFU, TTL)
