#javascript #node.js #discord.js #bots
Вопрос:
Я хотел сделать бота discord, но не очень далеко продвинулся, потому что код не работает, и после нескольких уроков я все еще не мог приступить к работе. Это код, который у меня есть, и ошибка, которую он выдает. Кто-нибудь может, пожалуйста, сказать мне, что я могу делать не так?
const { token } = require('./config.json');
const client = new Client({ intents: [Intents.FLAGS.GUILDS] });
client.once('ready', () => {
console.log('Ready!');
});
client.login(xxxxxxxxxxxxxxxxxxxxxxxx);
-----------------------------------------------------------------
node:internal/modules/cjs/loader:936
throw err;
^
Error: Cannot find module './config.json'
Require stack:
- C:UsersgabriDocumentsbotdiscindex.js
at Function.Module._resolveFilename (node:internal/modules/cjs/loader:933:15)
at Function.Module._load (node:internal/modules/cjs/loader:778:27)
at Module.require (node:internal/modules/cjs/loader:999:19)
at require (node:internal/modules/cjs/helpers:102:18)
at Object.<anonymous> (C:UsersgabriDocumentsbotdiscindex.js:3:19)
at Module._compile (node:internal/modules/cjs/loader:1095:14)
at Object.Module._extensions..js (node:internal/modules/cjs/loader:1147:10)
at Module.load (node:internal/modules/cjs/loader:975:32)
at Function.Module._load (node:internal/modules/cjs/loader:822:12)
at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:81:12) {
code: 'MODULE_NOT_FOUND',
requireStack: [ 'C:\Users\gabri\Documents\botdisc\index.js' ]
}
Node.js v17.0.1
Комментарии:
1.
Cannot find module './config.json'
В этом-то и проблема
Ответ №1:
Файл javascript не может найти ваш файл config.json, проверьте путь и убедитесь, что файл config.json находится в той же папке, что и ваш index.js