1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Discord.js V14の変更点(私的メモ)

Last updated at Posted at 2022-07-18

初めに

Discord.jsがV14になったので自分のBOTのV13移行ついでにメモとして記事を書きました。
Bot: https://github.com/Zel9278/ced-bot-rewrite
今後この記事を更新するかもしれないです。

GatewayIntentBits

IntentというClientに権限を設定するものを使うために使用するものです。
https://discord.js.org/#/docs/discord.js/main/class/IntentsBitField

const { Client, GatewayIntentBits } = require("discord.js")
const client = new Client({
  intents: Object.values(GatewayIntentBits).filter(Number.isInteger) // ALL Intents
});
...

追加されたもの

終わりに

V14になってから、コマンドの引数にAttachmentなどが導入できるようになったので結構うれしいです、
でもちょっと分かりにくくなってたりしてたのが不満点だったりします。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?