EzLib

An easy helper library for Ez client-side Fabric mods.

6

EzLib

EzLib

EzLib

Ez client-side Fabric mods 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

- EzPlayer — simple logging helper - EzPlayer — JSON config helper - EzPlayer — ready-to-use color constants - EzPlayer — outline/color helper - EzPlayer — Minecraft client/player/world helper - EzPlayer — useful math helpers - EzPlayer — ItemStack/item checks - EzPlayer — inventory search helpers - EzPlayer — player state helpers - Basic helper API for future Ez mods

---

Example

```java EzLogger.info("This mod is using EzLib!"); ```

---

For developers

To use EzLib in your mod, add JitPack to your `settings.gradle`.

```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.

```gradle dependencies { implementation "com.github.ItsRaphaelakos:EzLib:1.0.4" } ```

And add EzLib to your `fabric.mod.json` dependencies.

```json "depends": { "fabricloader": ">=0.19.2", "fabric-api": ">=0.148.0+26.1.2", "minecraft": "26.1.2", "ezlib": ">=1.0.4" } ```

---

Compatibility

- Java: 26.1.2 - Java: 0.19.2 - Java: 0.148.0+26.1.2 - Java: 25

---

Links

- YouTube - GitHub - Modrinth Profile - CurseForge Profile - Discord

ADS