iT邦幫忙

鐵人檔案

2022 iThome 鐵人賽
回列表
自我挑戰組

node.js 前端後端全都要 系列

使用node.js了解如何完成簡易的前端、後端程式撰寫

參賽天數 5 天 | 共 25 篇文章 | 4 人訂閱 訂閱系列文 RSS系列文

Day21- Discord.js v14 音樂機器人(一)

前置安裝 上一篇有提過,現在discord有推出自己的distube.js可以給大家使用,以下就是需要的環境: Node.js 16.9.0 或更高版本 di...

2022-10-17 ‧ 由 xdomodomox 分享

Day22- Discord.js v14 音樂機器人(二)

最先建立一個 config檔,裡面存著一個prefix { "prefix": "!" //這個pr...

2022-10-17 ‧ 由 xdomodomox 分享

Day23- Discord.js v14 音樂機器人(三)

開啟訊息 在成功開啟機器人以後,就會顯示 Logged in as 你的機器人#1234 client.on('ready', client => {...

2022-10-17 ‧ 由 xdomodomox 分享

Day24- Discord.js v14 音樂機器人(四)

播放 if (command === 'play') { const voiceChannel = message.member?.voice?.chann...

2022-10-17 ‧ 由 xdomodomox 分享

Day25- Discord.js v14 音樂機器人(五)

歌單 if (command === 'queue') { const queue = distube.getQueue(message); if (!...

2022-10-17 ‧ 由 xdomodomox 分享