0
VPSで不具合ボットを実行しようとすると構文エラーが発生します。私は、ノードのバージョンv0.10.46を使用していNode.JSノンストップ構文エラー
/root/node_modules/random.js:12 client.on('ready',() => {
^SyntaxError: Unexpected token)
at Module._compile (module.js:439:25)
at Object.Module._extensions..js (module.js:474:10)
at Module.load (module.js:356:32)
at Function.Module._load (module.js:312:12)
at Function.Module.runMain (module.js:497:10)
at startup (node.js:119:16)
at node.js:945:3
const Discord = require('discord.js');
const request = require('superagent');
const fs = require('fs');
const client = new Discord.Client({ fetch_all_members: false,
api_request_method: 'sequential' });
client.login(***);
client.on('ready',() => {
console.log('ready!');
});
client.on('channelCreate', channel => {
console.log('made ${channel.name}');
});
client.on('guildMemberAdd', (g, m) => {
console.log('${m.user.username} joined ${g.name}');
})
client.on('guildMemberUpdate', (g, o, n) => {
console.log(o.nickname, n.nickname);
});
client.on('debug', console.log);
... VPSにインストールされているすべての必要なものを持っています。
あなたのES6構文の一部をサポートしていない古いバージョンのNodeがあると思います。 –
ノードのバージョンでサポートされている矢印の機能に関する情報は、http://node.green/#arrow-functions – cartant
@ AlexanderO'Mara v0.10.46 ..... –