discord develop code example
Example 1: discord developer portal
discord.com/developers/applications
Example 2: how to get a bot online on discord
const Discord = require('discord.js');
const bot = new Discord.Client();
const TOKEN = "put ur token";
bot.login(TOKEN);