node.jsdiscorddiscord.js

Deleting all messages in discord.js text channel


Ok, so I searched for a while, but I couldn't find any information on how to delete all messages in a discord channel. And by all messages I mean every single message ever written in that channel. Any clues?


Solution

  • Try this

    async () => {
      let fetched;
      do {
        fetched = await channel.fetchMessages({limit: 100});
        message.channel.bulkDelete(fetched);
      }
      while(fetched.size >= 2);
    }