discordjs get member count code example
Example: Member Count Discord.js
// Set the bot's "Playing: " status (must be in an event!)
client.on("ready", () => {
client.user.setActivity("my code", { type: "WATCHING"})
})
// Set the bot's online/idle/dnd/invisible status
client.on("ready", () => {
client.user.setStatus("online");
});
// Set the bot's presence (activity and status)
client.on("ready", () => {
client.user.setPresence({
game: {
name: 'my code',
type: 'WATCHING'
},
status: 'idle'
})
})