問題描述
我剛剛在 Replit 上啟動了 Discord.JS.它遵循 FreeCodeCamp 關于 https://www 的教程.freecodecamp.org/news/create-a-discord-bot-with-javascript-nodejs/
I have just started Discord.JS on Replit. It followed FreeCodeCamp's Tutorial on https://www.freecodecamp.org/news/create-a-discord-bot-with-javascript-nodejs/
但是當我運行代碼時它告訴我運行:
But when I runned the code it telled me to run :
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(process.env.TOKEN)
它告訴這個錯誤:
Error: Cannot find module 'node:events'
Require stack:
- /home/runner/Omega-Flowey-JS-Test/node_modules/discord.js/src/client/BaseClient.js
- /home/runner/Omega-Flowey-JS-Test/node_modules/discor
Error: Cannot find module 'node:events'
Require stack:
- /home/runner/Omega-Flowey-JS-Test/node_modules/discord.js/src/client/BaseClient.js
- /home/runner/Omega-Flowey-JS-Test/node_modules/discord.js/src/index.js
- /home/runner/Omega-Flowey-JS-Test/index.js
at Function.Module._resolveFilename (internal/modules/cjs/loader.js:815:15)
at Function.Module._load (internal/modules/cjs/loader.js:667:27)
at Module.require (internal/modules/cjs/loader.js:887:19)
at require (internal/modules/cjs/helpers.js:74:18)
at Object.<anonymous> (/home/runner/Omega-Flowey-JS-Test/node_modules/discord.js/src/client/BaseClient.js:3:22)
at Module._compile (internal/modules/cjs/loader.js:999:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:1027:10)
at Module.load (internal/modules/cjs/loader.js:863:32)
at Function.Module._load (internal/modules/cjs/loader.js:708:14)
at Module.require (internal/modules/cjs/loader.js:887:19
誰能告訴我什么錯誤?我是 Discord.JS 的新手,所以我不知道有什么錯誤.
Can someone tell me whats error? I'm very new at Discord.JS so I don't know anything that is error.
推薦答案
Discord.js v13 需要 Node.js v16.6.Replit 僅直接支持 Node.js v12.16.1(在撰寫本文時).
Discord.js v13 requires Node.js v16.6. Replit only directly supports Node.js v12.16.1 (at the time of writing).
使用舊版本的 Node.js 時,您可能會看到諸如
When using an older version of Node.js, you may see errors such as
- 錯誤:找不到模塊'node:events'
- ReferenceError: AbortController 未定義
- SyntaxError: Unexpected token '?'
但是,您可以使用 node npm 包安裝更新的 Node.js 二進制文件.
However, you can install a newer Node.js binary using the node npm package.
這是一個最小設置:
package.json
{
"name": "node.js-v16-on-replit-demo",
"version": "0.0.1",
"dependencies": {
"discord.js": "^13.2.0",
"node": "^16.10.0"
}
}
.replit
run = "npx node ."
index.js
const Discord = require("discord.js")
// your code...
你可以試試這個demo repl.
如果你喜歡,你可以定義一個 start
npm 腳本:
If you like, you can define a start
npm script:
package.json
{
// ...
"scripts": {
"start": "node ."
}
}
.replit
run = 'npm start'
還有 網上有大量關于 Node 的資源.js v16 在 Replit 上.
There are also plenty of resources online about Node.js v16 on Replit.
這篇關于使用 REPLIT 創建我的第一個機器人,但總是錯誤 Discord.JS的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!