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)