Modscraper Modscraper Minecraft
CoryLib logo

CoryLib

Mod

Unified data storage and synchronization library for Minecraft mods. ⚙️

Type

Mod

Modrinth Downloads

23

Modrinth ID

CeLdcY0u

Last Updated

May 30, 2026

Description

CoryLib⚡

A Minecraft Library for unified data storage and synchronization library for Minecraft mods.

Designed for mods that need a clean way to store, retrieve, version, and synchronize data across server, dimension, player, and client contexts.

line

So, why CoryLib? 🤷‍♂️

Minecraft mods often reimplement the same data systems over and over:

  • Dimension-specific state
  • Client preferences
  • Server-to-client sync
  • Runtime-only transient data

So CoryLib provides one fluent API for all of those cases.

public static final CoryContext DATA = CoryData.init("my_mod"); public static final DataEntry<ServerPlayer, Integer> KILLS = DATA.player("kills", Codec.INT) .defaultValue(0) .storage(Storage.DISK) .version(1) .sync(SyncTrigger.IMMEDIATE) .build();

You can check the repository for details and guides.

line

You can support by simply downloading the mod or donating me! Thanks if you do! 💕

This was made by devs, to devs ❤️

Compatibility

Mod Loaders

Fabric Neoforge

Game Versions

1.21.1 1.21.2 1.21.3 1.21.4 1.21.5 1.21.6 1.21.7 1.21.8 1.21.9 1.21.10 +1 more

Similar Mods

External Resources