discord js api call code example

Example 1: discord.js start code

const Discord = require('discord.js') //this says that its using discord.js and classifing it as a bot
const bot = new Discord.Client();

const token = 'put your bots token here!';
//link to the dev portal to make your own discord bot here: https://discord.com/developers/applications

Example 2: discord.js help

const Discord = require('discord.js')
require('dotenv').config();
const bot = new Discord.Client();
const token = 'ODE0NzA1NzQzOTczMzE4NzA2.YDhv2Q.5WtTxRrG-tFzqPUCo4HY30wqLcY';

bot.commands = new Discord.Collection();
bot.events = new Discord.Collection();

['command_handler', 'event_handler'].forEach(handler => {
    require(`./handlers/${handler}`)(bot, Discord);
})

bot.on('ready', () => {

    bot.user.setActivity('+help', { type: "LISTENING" }).catch(console.error);
    this.bot.user.setStatus('dnd');
})

bot.login(process.env.DISCORD_TOKEN);