discord bot api js documentation code example
Example 1: discord.js start
const Discord = require('discord.js');
const client = new Discord.Client();
const token = 'TOLKEN';
client.on('ready', () => {
console.log('The client is ready!')
})
client.login(token)
Example 2: discord.js download
const Discord = require('discord.js');
const client - new Discord.Client();
const prefix = "?"
client.on("ready", () => {
console.log('literally anything you want goes here')
})
client.on('message', message => {
if(message.content.startsWith(`${prefix}ping`)){
message.channel.send('pong!');
}
})
client.login('your token here');