From fa763d1eb69b52ba655b9bbd89b646e59810c5bb Mon Sep 17 00:00:00 2001 From: Skillz4Killz <23035000+Skillz4Killz@users.noreply.github.com> Date: Mon, 22 Nov 2021 19:19:05 +0000 Subject: [PATCH] fix: cleaner readme features for plugins --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 846842a57..edeff1183 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,10 @@ TODO: add coverage back when it is stable the difficulties of extending built-in classes and inheritance. - **Cross Runtime**: Supports both Deno and Node.js runtimes. - **Standalone REST, Gateway, Custom Cache & more**: Discordeno provides the ability to have almost every part of a bot as a standalone piece. -- **Plugins:** Library is designed to let you plugin and override any part of the code. Never deal with the headaches of maintaining your fork just to get something customized for your needs. You can use plugins for almost anything, for example we have a few official plugins. The cache plugin that enables caching everything. The sweeper plugin that enables sweepers to clean the cache every once in a while. Finally, the permission plugin that internally checks all missing permissions before forwarding a request to the Discord API so that the client does not get globally banned by Discord. +- **Plugins:** Library is designed to let you plugin and override any part of the code. Never deal with the headaches of maintaining your fork just to get something customized for your needs. You can use plugins for almost anything, for example we have a few official plugins. + - Cache plugin that enables caching everything. + - Sweeper plugin that enables sweepers to clean the cache every once in a while. + - Permission plugin checks internally all missing permissions before forwarding a request to the Discord API so that the client does not get globally banned by Discord. - **Flexibility:** If your bot does not need certain properties from objects then you can simply remove them. For example, if your bot does not need `Channel.topic` you should not have to store it. This can save you GBs of memory. Doing this for any property on any object is as simple as a few lines of code. ### REST