discord.js


Discord server npm version npm downloads

## About dsb is a [Node.js](https://nodejs.org) module that allows user accounts to interact with the discord api I am in no way responsible for what happens to your account. What you do is on you! ## Installation **Node.js 16.9.0 or newer is required** ```sh-session npm install dsb.js ``` ## Example ```js const { Client } = require('dsb.js'); const client = new Client(); // intents and partials are already set so you don't have to define them client.on('ready', async () => { console.log(`${client.user.username} >> [${client.guilds.cache.size}] guilds || [${client.friends.cache.size}] friends`); }) client.login('token'); ``` ## Links - [Documentation](https://discord.js.org/#/docs/discord.js/stable/general/welcome) - [GitHub](https://github.com/TheDevYellowy/discordjs-selfbot) - [Discord](https://discord.gg/3makcFd2m4)