xxxxxxxxxx
const Discord = require('discord.js');
const client = new Discord.Client();
const token = 'YOUR TOKEN HERE'; // For get a token , go here https://discord.com/developers/applications
client.login(token);
xxxxxxxxxx
const Discord = require('discord.js');
const client = new Discord.Client();
const token = 'TOLKEN'; // Add your token here
client.on('ready', () => {
console.log('The client is ready!')
})
client.login(token)
xxxxxxxxxx
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
xxxxxxxxxx
const Discord = require('discord.js');
const client = new Discord.Client({
intents: 32767 // Get all intents
});
// Get the config file
const config = require('./config.json');
// When the bot is connected, a message will be displayed in the console
client.on('ready', async () => {
console.log(`${client.user.username} is ready !`);
})
// Connect with ur token bot
client.login(config.token);