我正在尝试制作一个不和谐的机器人,但无法运行它

时间:2020-08-19 23:11:20

标签: node.js

嗨,所以我对代码很陌生,我正在尽力创建一个简单的discord bot,但我什至无法运行它或将其打开。当我使用“节点”时。或“ node index.js”它给了我这个。

    const Discord = require('discord.js)');
const bot = new Discord.Client();

const token = 'NzQ1NzY2OTQ2NDQzNjI0NDg4.Xz2jlw.sKIp-VYeOdTHTrBWmu2DOnHlgq4';

bot.on('ready', () =>{
    console.log('This bot is online!');
})

有人提到安装discord.js,但仍然无法正常工作。到目前为止,这里的机器人非常简单

{
  "name": "beep-boop",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "start": "node index.js"
  },
  "author": "Upsetti",
  "license": "ISC",
  "dependencies": {
    "discord.js": "^12.3.1",
    "dotenv": "^8.2.0",
    "express": "^4.17.1"
  }
}

bot.login(令牌);

这是.json包的内容

litespeed

pls帮助:'>

2 个答案:

答案 0 :(得分:0)

您有错字。您目前在说:

require('discord.js)')

应该是:

require('discord.js') // Note the ")" inside the quotes has been removed

我对不一致问题不太熟悉,但是您可能在问题中共享了一个私人令牌。在这种情况下,您可能想要获取一个新令牌,并将此新令牌保密。

答案 1 :(得分:0)

这不是答案,但是请不要在线添加您的令牌,否则请生成一个新的令牌,因为网站上有人在寻找Discord令牌来入侵并破坏您的机器人。