reconfigure
ModConfiguration library for my mods
Type
Mod
Modrinth Downloads
3,289
Modrinth ID
QHmQeeNt
Last Updated
Jul 25, 2026
Description
reconfigure
A config library for my mods
Design goals
- Uses the builder pattern so all options autocomplete. Just start with Config.builder() and autocompletion will guide you through the whole process of creating a configuration
- Designed to be used in the field initializers of a config class
- Does not use annotations for flexibility at runtime
Preview

Example definition
class DemoConfig { public final Config CONFIG = Config.builder("reconfigure-test") .serializer(Serializers.JSON) .build(); public final ConfigTab DEMO_TAB = CONFIG.createTab("demo").build(); Void HEADLINE = DEMO_TAB.createHeadline("headline"); public final Property<String> STRING = DEMO_TAB.createStringProperty("string").defaultValue("Hello world") .asTextField().placeholder("Enter something").build(); public final Property<Boolean> CHECKBOX = DEMO_TAB.createBooleanProperty("checkbox").defaultValue(true) .asCheckbox().build(); public final Property<Boolean> TOGGLE_BUTTON = DEMO_TAB.createBooleanProperty("toggle_button") .asToggleButton().build(); public final Property<Integer> SLIDER = DEMO_TAB.createIntegerProperty("slider").defaultValue(4).range(1,10) .asSlider().build(); public final Property<DayOfWeek> CYCLE_BUTTON = DEMO_TAB .createEnumProperty("cycle_button", DayOfWeek.class) .defaultValue(DayOfWeek.MONDAY) .asCyclingButton() .build(); public final Property<Integer> COLOR = DEMO_TAB.createIntegerProperty("color").asColorPicker().build(); public final Property<String> EDIT_BOX = DEMO_TAB.createStringProperty("box").asEditBox().build(); public final Property<List<String>> CHIP_LIST = DEMO_TAB.createListProperty("chiplist") .asChipList() .build(); }Compatibility
Mod Loaders
Fabric
Game Versions
1.21.4
1.21.5
1.21.6
1.21.7
1.21.8
1.21.9
1.21.10
1.21.11
26.1
26.1.1
+2 more
Screenshots
Similar Mods
Heroes United: Danny Phantom
Part of the Heroes United Series!
Mod
32,879
Super Enchants
Combine Vanilla Enchantment Books by Throwing them on top of Anvils. Nearly All Vanilla Enchantments can Exceed their L...
Mod
32,878
LocalizedFishingTables
Biome specific fishing loot
Mod
32,872
ToLaserBlade-ExtraModels
A ToLaserBlade add-on to add more laser blade shapes. Requires ToLaserBlade.
Mod
32,871
Dragonite
This mod adds endgame stuff!
Mod
32,863
Fast Elytra
Adds the ability to boost with the elytra by pressing W
Mod
32,857