問題描述
我正在嘗試制作一個不和諧的機器人,它只會顯示是否有人在游戲中在線.
I'm trying to make a discord bot that just says if someone is online on the game.
但我不斷收到此消息:
[ERR_REQUIRE_ESM]:不支持 ES 模塊的 require().而是將 index.js in... 的 require 更改為在所有 CommonJS 模塊中都可用的動態 import().
[ERR_REQUIRE_ESM]: require() of ES Module from not supported. Instead change the require of index.js in... to a dynamic import() which is available in all CommonJS modules.
這是我的代碼:
module.exports = {
name: 'username',
description: "this is the username command",
async execute(message, args) {
const fetch = require('node-fetch');
if (args.length !== 1) {
return message.channel.send("invalid username wtf")
}
const ign = args[0]
if (ign.length > 16 || ign.length < 3) {
return message.channel.send("invalid username wtf")
}
const uuid = await fetch(`https://api.mojang.com/users/profiles/minecraft/${ign}`).then(data => data.json()).then(data => data.id).catch(err => message.channel.send("error wtf"));
const onlineInfo = await fetch(`https://api.hypixel.net/status?key=${john}&uuid=${uuid}`).then(data => data.json());
if (uuid.length !== 32) {
return;
}
if (onlineinfo.success) {
if (onlineinfo.session.online) {
message.channel.send("they are online")
}
else {
message.channel.send("they are offline")
}
}
else {
message.channel.send("hypixel api bad wtf")
}
}
}
這是我的 package.json:
This is my package.json:
{
"name": "discordbot",
"version": "1.0.0",
"main": "main.js",
"scripts": {
"test": "echo "Error: no test specified" && exit 1",
"start": "node main.js"
},
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"discord.js": "^13.0.1",
"node-fetch": "^3.0.0"
}
}
推薦答案
node-fetch
v3 最近停止了對 require
導入方式的支持,轉而支持 ES 模塊.您現在需要使用 ESM 導入,例如:
node-fetch
v3 recently stopped support for the require
way of importing it in favor of ES Modules. You'll need to use ESM imports now, like:
import fetch from "node-fetch";
在文件的頂部.
這篇關于錯誤 [ERR_REQUIRE_ESM]:不支持 ES 模塊的 require()的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!