DiscordのbotをNode.jsで動かす
#Discord
#Node.js
public.icon
code:node.js
const { Client, GatewayIntentBits} = require('discord.js');
const client = new Client({ intents: GatewayIntentBits.Guilds, GatewayIntentBits.GuildMessages });
client.once('ready', () => {
console.log('Ready!');
});
client.login('xxxxx');
client.on('messageCreate', message => {
console.dir(message);
if (message.content.indexOf('!ping') > -1) {
message.channel.send('Pong!');
}
});