Compatibility
Minecraft: Java Edition
26.1.x
Platforms
Supported environments
Client-side
Links
Tags
Creators
Details
Licensed MIT
Published 2 weeks ago

EzLib
EzLib is an easy helper library for Ez client-side Fabric mods.
It helps developers create client-side QoL mods faster by providing simple helper APIs for logging, configs, colors, player checks, inventory checks, items, math, and more.
Features
- EzLogger — simple logging helper
- EzConfig — JSON config helper
- EzColor — ready-to-use color constants
- EzOutline — outline/color helper
- EzClient — Minecraft client/player/world helper
- EzMath — useful math helpers
- EzItem — ItemStack/item checks
- EzInventory — inventory search helpers
- EzPlayer — player state helpers
- Basic helper API for future Ez mods
Example
EzLogger.info("This mod is using EzLib!");
For developers
To use EzLib in your mod, add JitPack to your settings.gradle.
dependencyResolutionManagement {
repositories {
maven {
name = "Fabric"
url = "https://maven.fabricmc.net/"
}
maven {
name = "JitPack"
url = "https://jitpack.io"
}
mavenCentral()
}
}
Then add EzLib to your build.gradle dependencies.
dependencies {
implementation "com.github.ItsRaphaelakos:EzLib:1.0.4"
}
And add EzLib to your fabric.mod.json dependencies.
"depends": {
"fabricloader": ">=0.19.2",
"fabric-api": ">=0.148.0+26.1.2",
"minecraft": "26.1.2",
"ezlib": ">=1.0.4"
}
Compatibility
- Minecraft: 26.1.2
- Fabric Loader: 0.19.2
- Fabric API: 0.148.0+26.1.2
- Java: 25


