discordjs.danbulant.eu Open in urlscan Pro
2a06:98c1:3120::3  Public Scan

URL: https://discordjs.danbulant.eu/
Submission Tags: phishingrod
Submission: On December 25 via api from DE — Scanned from NL

Form analysis 0 forms found in the DOM

Text Content

Sorry, but the discord.js website doesn't work properly without JavaScript
enabled. Please enable it to continue.
discord.js
DocumentationGitHubGuide
npm install discord.js



ABOUT

discord.js is a powerful node.js module that allows you to interact with the
Discord API very easily. It takes a much more object-oriented approach than most
other JS Discord libraries, making your bot's code significantly tidier and
easier to comprehend.

Usability, consistency, and performance are key focuses of discord.js, and it
also has nearly 100% coverage of the Discord API. It receives new Discord
features shortly after they arrive in the API.


EXAMPLE

const Discord = require('discord.js');
const client = new Discord.Client();

client.on('ready', () => {
  console.log(`Logged in as ${client.user.tag}!`);
});

client.on('message', msg => {
  if (msg.content === 'ping') {
    msg.reply('Pong!');
  }
});

client.login('token');


WHY?



 * Object-oriented
 * Speedy and efficient
 * Feature-rich
 * Flexible
 * 100% Promise-based




STATISTICS



 * 29,543,397 downloads
 * 24,337 stars
 * 100 contributors



...and growing!

Get startedDiscord
discord.js

A powerful library for interacting with the Discord API

 * 29,543,397 downloads
 * 24,337 stars
 * 100 contributors

Turn off the lights
π
commit: 9eb76b91cb08cc547dcb832b7bd54a8d5517c176
built at: Wed, 24 Mar 2021 08:51:55 GMT