npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

discord.js-v11-stable

v11.7.1

Published

Discord.js V11 STABLE PATCHED. Fixes issue with stage channels by ignoring them, and allows use of bots and userbots on V11. THIS IS UNOFFICIAL. DO NOT GET SUPPORT FROM the OFFICIAL Discord.js Server.

Downloads

138

Readme

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.