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

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


