discord.js-v11-stable
TypeScript icon, indicating that this package has built-in type declarations

11.6.9 • Public • Published

discord.js


Discord server NPM version NPM downloads Build status Dependencies

NPM info

Package discord.js-v11-stable

Package version: 1.0.0

Description

The discord.js-v11-stable package is a modified version of the Discord.js library, specifically tailored to work with the stable version 11.x of Discord.js. This package has been carefully curated to ensure compatibility with Discord's API and provides a convenient way to interact with the Discord platform using JavaScript. It is primarily designed for selfbot usage.

Please note that selfbots violate Discord's Terms of Service, and using selfbots can result in the permanent suspension of your Discord account. It is strongly recommended to use the official Discord bot API instead.

Installation

To install the discord.js-v11-stable package, you can use npm (Node Package Manager) by running the following command:

npm install discord.js-v11-stable

Usage

To use the discord.js-v11-stable package in your Node.js project, you need to require it at the beginning of your code:

const Discord = require('discord.js-v11-stable');

After requiring the package, you can create a new Discord client instance:

const client = new Discord.Client();

From there, you can start interacting with the Discord API using the various methods and events provided by the client. You can refer to the official Discord.js documentation for more details on the available functionality and how to use it.

Examples

Here's a simple example that demonstrates how to log in to Discord using the discord.js-v11-stable package and send a message to a specific channel:

const Discord = require('discord.js-v11-stable');

const client = new Discord.Client();

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

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

client.login('YOUR_DISCORD_TOKEN');

Make sure to replace 'YOUR_DISCORD_TOKEN' with your actual Discord bot token.

Support and Contributions

As this package is a modified version of Discord.js, you can refer to the official Discord.js documentation for most of the support and guidance. However, please note that the discord.js-v11-stable package is no longer maintained or officially supported, so you may encounter limitations or issues that are specific to this package.

If you encounter any bugs or have suggestions for improvements, you can reach out to the original Discord.js community or consider forking this repository and making the modifications yourself.

License

The discord.js-v11-stable package is distributed under the MIT License. Please review the license terms and conditions for more details.

Disclaimer

Using selfbots is against Discord's Terms of Service, and it is strongly advised not to use them. Discord may take action against accounts found using selfbots, including permanent suspension. This package is provided for educational purposes only, and the responsibility for any consequences lies solely with the user.

Use this package at your own risk.

Package Sidebar

Install

npm i discord.js-v11-stable

Weekly Downloads

27

Version

11.6.9

License

Apache-2.0

Unpacked Size

768 kB

Total Files

186

Last publish

Collaborators

  • walkoud