Mineuniverse
Log in Register
Mods

Jsonate

Jsonate simplifies Minecraft mod configuration with a lightweight JSON API, automating versioning, file handling, and type-safe data access for Forge developers.
by _nArUTo_
Download Claim this project
7,777 downloads
0 likes
Updated Jul 6, 2026
0 hypes
API and Library

Jsonate - Evil Json dominates everything.

Jsonate provides an intuitive, lightweight API for managing JSON-based configuration files in your Minecraft mods. Designed for simplicity and efficiency, it handles versioning, automatic file creation, and data type conversions seamlessly.

Don't wanna add dependency? Just copy the JsonConfig class and paste it into your template!

🛠 Usage Example

Add settings to your mod with clean, readable code:

public class ExampleMod {
    private static final JsonConfig CONFIG = JsonConfig.create("your_mod_id", "1.0.0")
        .put("Difficulty", 3)
        .put("EnableFeatures", true)
        .put("BlockList", Arrays.asList("dirt", "sand"))
        .initialize(); // Creates/loads JSON file
    // Access values statically
    public static int DIFFICULTY = CONFIG.getInt("Difficulty");
    public static boolean FEATURES_ENABLED = CONFIG.getBoolean("EnableFeatures");
    public static List<String> BLOCKED_ITEMS = CONFIG.getList("BlockList", String.class);
}

Generated JSON (your_mod_id.json):

{
  "Version": "1.0.0",
  "Difficulty": 3,
  "EnableFeatures": true,
  "BlockList": ["dirt", "sand"]
}

Important Notes

Cache Config Values: For performance, store retrieved values in static fields (avoid repeated lookups).

Path Conventions: Files are saved to .minecraft/config/your_mod_id.json by default.

Version Control: Update the version number after changing .put logic.


jsonate-1.0.1
MC 1.16.5, Forge
Release 2025-10-23 Get
jsonate-1.0.1
MC 1.21.5, 1.21.8, 1.21.4, NeoForge, 1.21.3, 1.21.7, 1.21.1, 1.21.6, 1.21.2
Release 2025-08-19 Get

More from _nArUTo_

ServerTickReforged
93,265
Starks
918
Rage Mod
9,134
EmptiableBoxes
91
Camel Extend
906
PeaceCampfire
904

You Might Also Like

Vivecraft
A Minecraft VR mod on a loader of your choice!
9,988,339
Athena
A crossplatform (Forge/Fabric) solution to connected block textures for 1.19.4+
99,799,527
Lodestone
A collection of code used throughout projects under the Lodestar team.
9,914,417
TheDragonLib
A library for most of sokratis12GR's Mods
9,910,232
Multi Mob Library
A library mod containing essential files for Daveyx0's mob mods
9,892,767
FTB Library (Forge) (Legacy)
FTB Library is a library mod that is used for some of our mods.
98,265,314