discord.js-selfbot-v13/README.md
2022-03-19 17:37:45 +07:00

1.5 KiB


discord.js


Discord server npm version npm downloads

About

dsb is a Node.js 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

npm install dsb.js

Example

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');