Go to file
2022-03-19 17:37:45 +07:00
src Initial commit 2022-03-19 17:37:45 +07:00
typings Initial commit 2022-03-19 17:37:45 +07:00
- Copy.gitignore Initial commit 2022-03-19 17:37:45 +07:00
.gitattributes Initial commit 2022-03-19 17:37:45 +07:00
.gitignore Initial commit 2022-03-19 17:37:45 +07:00
LICENSE Initial commit 2022-03-19 17:37:45 +07:00
package.json Initial commit 2022-03-19 17:37:45 +07:00
README.md Initial commit 2022-03-19 17:37:45 +07:00
tslint.json Initial commit 2022-03-19 17:37:45 +07:00


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