1.1.2 • Published 2 years ago

dsb.js v1.1.2

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

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

Links