discord js documentation code example

Example 1: discord.js start

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)

Example 2: Discord.js Basics

const Discord = require("discord.js")
const client = new Discord.Client()
client.on("ready", ()=>{
console.log(`Logged in as ${client.user.tag}`)
})
client.on("message", async function (message) {
  if(message.content === "!test") {
	message.reply("Hello World!")
  }
})

Example 3: discord.js start

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);