Compatibility
Minecraft: Java Edition
26.2
26.1.2
1.21.10–1.21.11
1.21.8
1.21.6
1.21.4
1.21–1.21.1
Platforms
Supported environments
Client-side
Tags
Creators
Details
Licensed MIT
Published 7 months ago
Updated 5 days ago
DuchEssentials
DuchEssentials is a small utility library made mainly for my Minecraft mods and plugins, but it can also be used by other developers.
It contains a few common systems and helpers that I kept rewriting between projects, so I decided to put them into one library instead.
What's included?
- DuchLogger – simple logging system for mods
- DuchAPI – basic API for registering mods
- Utilities – various helpers for strings, math and collections
The library doesn't add any gameplay content by itself. It's just a dependency that other projects can use.
Example
DuchLogger.ModLogger logger =
DuchLogger.createLogger("modid", "ModName");
DuchAPI.registerMod(
"modid",
"ModName",
"1.0.0"
);
If your mod uses DuchEssentials, add it as a dependency:
"duchessentials": ">=1.0.0"
That's pretty much it. The goal is just to keep commonly used code in one place instead of copying the same utilities into every project.


