11.9.96 • Published 6 months ago

legend.js v11.9.96

Weekly downloads
-
License
Apache-2.0
Repository
-
Last release
6 months ago

About

discord.js is a powerful node.js module that allows you to interact with the Discord API very easily.

  • Object-oriented
  • Predictable abstractions
  • Performant
  • 100% coverage of the Discord API

Installation

Node.js 6.0.0 or newer is required.
Ignore any warnings about unmet peer dependencies, as they're all optional.

Without voice support: npm install discord.js
With voice support (@discordjs/opus): npm install discord.js @discordjs/opus
With voice support (opusscript): npm install discord.js opusscript

Audio engines

The preferred audio engine is @discordjs/opus, as it performs significantly better than opusscript. When both are available, discord.js will automatically choose @discordjs/opus. Using opusscript is only recommended for development environments where @discordjs/opus is tough to get working. For production bots, using @discordjs/opus should be considered a necessity, especially if they're going to be running on multiple servers.

Optional packages

  • bufferutil to greatly speed up the WebSocket when not using uws (npm install bufferutil)
  • erlpack for significantly faster WebSocket data (de)serialisation (npm install hammerandchisel/erlpack)
  • One of the following packages can be installed for faster voice packet encryption and decryption:

Example usage

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

Links

Extensions

Contributing

Before creating an issue, please ensure that it hasn't already been reported/suggested, and double-check the documentation.
See the contribution guide if you'd like to submit a PR.

Help

If you don't understand something in the documentation, you are experiencing problems, or you just need a gentle nudge in the right direction, please don't hesitate to join our official Discord.js Server.

11.9.96

6 months ago

11.9.94

8 months ago

11.9.95

8 months ago

11.9.93

8 months ago

11.9.92

9 months ago

11.9.91

10 months ago

11.9.9

10 months ago

11.9.6

1 year ago

11.9.7

1 year ago

11.9.8

1 year ago

11.9.5

1 year ago

11.9.3

1 year ago

11.9.4

1 year ago

11.9.2

2 years ago

11.9.1

2 years ago

11.8.6

2 years ago

11.8.7

2 years ago

11.8.4

2 years ago

11.8.5

2 years ago

11.8.8

2 years ago

11.8.9

2 years ago

11.8.2

2 years ago

11.8.3

2 years ago

11.9.0

2 years ago

11.8.1

2 years ago

11.8.0

2 years ago

11.7.7

2 years ago

11.7.8

2 years ago

11.7.5

2 years ago

11.7.6

2 years ago

11.7.9

2 years ago

11.7.3

2 years ago

11.7.4

2 years ago

11.7.2

3 years ago

11.7.0

3 years ago

11.7.1

3 years ago

11.6.8

3 years ago

11.6.9

3 years ago

11.6.7

3 years ago

11.6.6

3 years ago

11.6.5

3 years ago

11.6.4

3 years ago