mcNows

Nows MC

A Minecraft Java mod loader and stable wrapper layer that sits between your mod and Minecraft. Mods call Nows MC the same way, while each adapter maps those calls onto the real game API for its Minecraft version.

You can still use Minecraft's own APIs directly whenever that is the better tool. Nows is here to own the common wrapper boundary, not to hide the game from you.

Minecraft Java mod loader idea

  • Keep stable mod calls in Nows MC and move Minecraft API drift into adapters.
  • Expose helpers only where they make porting easier in real projects.
  • Let each Minecraft adapter translate the same Nows values into its version's game API.
  • Prefer clear APIs over clever abstractions that make debugging harder.

Current Nows MC release

The current site tracks Nows 0.10.0 for Minecraft 26.2. Supported targets include Minecraft 26.2, 26.1.2, 1.21.11, 1.21.1, 1.20.6, 1.20.1, 1.19.4, 1.19.2, 1.18.2, 1.17.1, 1.16.5, 1.16.4.

Use it for

  • Metadata, lifecycle hooks and loader-facing setup.
  • Registry helpers for common blocks, items, menus, recipes, tags and resources.
  • Small client helpers such as config screens, title buttons, keybinds and player snapshots.
  • Stable text, vector, item stack, command, datapack target and NBT wrapper values that reduce porting noise.

Use Minecraft directly when

  • Your block, item, recipe, screen or world logic needs the real game class.
  • A version has a special behavior that should stay visible in the mod.
  • You need mixins, rendering hooks or low-level integration that Nows does not cover.
  • Direct Minecraft code is simpler than adding another helper.

Honest limits

Nows is not a performance-first loader. It does not promise magic speed, zero porting work or full API compatibility between every Minecraft version. The goal is more practical: make common mod-facing calls stable, make adapter changes deliberate, and leave escape hatches open.

What we hope

If you are a mod author, the hope is simple: copy most of your mod forward, touch the version-specific parts deliberately, and keep the code understandable when you come back months later.

Nows will grow from the things mod developers actually ask for. If a helper makes porting easier without taking control away from the mod, it belongs here.