discord.js get guilds code example
Example 1: discord.js how to get all guilds
client.on("ready", () => {
const Guilds = client.guilds.cache.map(guild => guild.id);
console.log(Guilds);
});
Example 2: discord.js get server guild id
let server = message.guild.id, // ID of the guild the message was sent in
channel = message.channel.id // ID of the channel the message was sent in