
Modrinth · Minecraft mod
TooManyRecipeViewers
A compatibility layer for running JEI plugins with EMI written by Nolij
Quick answer
Which TooManyRecipeViewers release should I use?
TooManyRecipeViewers 0.9.0+mc.21.1 targets 1.21.1 with NeoForge. It must be installed on the client. Do not install it on the dedicated server. All 1 required mods have matching files.
Where it goes
Is TooManyRecipeViewers required on the client, server, or both?
It must be installed on the client. Do not install it on the dedicated server.
This file is marked client-only.
What else does TooManyRecipeViewers 0.9.0+mc.21.1 need?
0.9.0+mc.21.1. Change the file and its required mods may change too.
Install EMI first. We found matching files for this game-version and loader setup.
We only count dependency files that match this setup. A file for another loader does not fill the gap.
Before you install it
Add TooManyRecipeViewers without breaking your instance.
Built for TooManyRecipeViewers 0.9.0+mc.21.1. Pick another file and the loader, install side or required mods may change.
- 01
Stick to this file
Use 0.9.0+mc.21.1. It targets 1.21.1 with NeoForge; another release may have different loader, side or dependency requirements.
- 02
Bring the mods it needs
Install EMI first. We found matching files for this game-version and loader setup.
- 03
Put it on the correct side
It must be installed on the client. Do not install it on the dedicated server.
- 04
Pick the file you checked
Use the “Get this file” button beside 0.9.0+mc.21.1. It opens that exact file at the source.
About this project
What does TooManyRecipeViewers add?
IMPORTANT LICENSE NOTICE
By using this project in any form, you hereby give your "express assent" for the terms of the license of this project (see License), and acknowledge that I (the author of this project) have fulfilled my obligation under the license to "make a reasonable effort under the circumstances to obtain the express assent of recipients to the terms of this License".
TooManyRecipeViewers
TooManyRecipeViewers (or TMRV) is a compatibility layer for running JEI plugins with EMI without having to install JEI, written by Nolij.
You'll need EMI installed to use this mod.
Why use TMRV over EMI+JEI (AKA JEMI)?
JEMI is a compatibility layer built-in to EMI to get JEI plugins mostly working with EMI by heavily relying on the JEI internals. It is designed to be as simplistic as possible and relies on JEI to process recipe data first before it is imported to EMI.
TMRV is not like JEMI - it aims to completely replace the JEI API (NOTE: TMRV does contain some unmodified JEI internals - see JEI Code Re-Use). TMRV (where feasible) replaces JEI APIs with direct mappers to EMI APIs instead of loading the whole JEI registry and querying it after the fact. This has several advantages, including more efficient use of system resources, but is also a tradeoff, as TMRV's approach makes maintenance far more involved than what JEMI requires. JEMI is intentionally designed this way to allow EMI development to be focused on improving EMI itself, which is an approach I fully support.
TL;DR: TMRV is much more efficient than JEMI at the cost of taking much more effort to maintain than JEMI does, and nobody should expect EMI to put this amount of effort in to supporting an API that was intentionally not referenced during design. Be happy EMI can even load JEI plugins out of the box to begin with - it still took a fair amount of effort.
That being said, TMRV has two primary advantages over JEMI:
1. Plugin Compatibility
TMRV has better coverage of JEI's API than JEMI does (with one exception - see Known API Limitations). As of writing, this includes:
- Better conversion of built-in recipe types (JEMI only supports crafting and info recipe types; TMRV supports all built-in JEI recipe types)
- Ingredient/search alias support
createRecipeExtrassupport
2. Efficiency
With TMRV, you will always load in to the world faster than with JEMI. This is because JEI plugin initialization blocks world load - you can't start playing until all JEI plugins are initialized. EMI loads plugins asynchronously after the world is loaded.
This means that even if TMRV loaded JEI plugins slower than JEI does (not the case, it loads them measurably faster - see benchmarks), worlds will always load faster with TMRV than with JEMI.
As already mentioned, TMRV replaces much of the JEI APIs with mappers to the corresponding EMI APIs - this means entire parts of the JEI internals can be outright removed. There's no need to initialize and store a whole JEI recipe registry - TMRV just converts JEI API calls to EMI ones, and converts the responses to the JEI format. Think of TMRV like Wine or Proton, and JEMI like a VM. JEMI uses real JEI, so there will be some scenarios where TMRV will error where JEMI won't (note that this doesn't necessarily mean that JEMI properly supports a scenario, it just means it looks like it does), but TMRV will generally be more efficient than JEMI.
Benchmarks
The full results and steps followed to obtain them are documented in BENCHMARKS.md. These results were not cherry-picked. The instructions were followed exactly as documented in that file. I encourage the community to verify them.
Load Times
| TMRV | JEMI | Comparison | |
|---|---|---|---|
| Craftoria | 1582ms (5ms before world load, 1577ms after world load) | 11036ms (10000ms before world load, 1036ms after world load) | -9454ms (-9995ms before world load, +541ms after world load) |
| ATM10 | 4951ms (3ms before world load, 4948ms after world load) | 20132ms (15550ms before world load, 4582ms after world load) | -15181ms (-15547ms before world load, +366ms after world load) |
| Finality: Omnia | 3010ms (6ms before world load, 3004ms after world load) | 6354ms (4425ms before world load, 1929ms after world load) | -3344ms (-4419ms before world load, +1075ms after world load) |
Memory Usage
| TMRV | JEMI | Comparison | |
|---|---|---|---|
| Craftoria | 4.278 GiB | 4.386 GiB | -110.6 MiB (approximate) |
| ATM10 | 4.401 GiB | 5.273 GiB | -892.9 MiB (approximate) |
| Finality: Omnia | 1.947 GiB | 2.065 GiB | -120.8 MiB (approximate) |
Known API Limitations
JEI Config Files
.minecraft/config/jei/blacklist.json is the only JEI config file that TMRV even reads. This file should work fine for vanilla ingredient types and for modded ingredient types added by a JEI plugin (this does not include mods that support both JEI and EMI natively, such as Mekanism). This is meant to be a stop-gap for packs switching over from JEI. JEMI had a similar flaw. EMI has its own config for hiding ingredients - please use that instead. All other JEI config files are completely ignored by TMRV, and there are no plans to support them.
Recipe Manager Plugins
The JEI API supports "Recipe Manager Plugins". These plugins allow mods to control their own recipe registries and handle recipe lookups themselves at runtime.
TMRV will attempt to extract recipes from these plugins, but this does not work for most plugins, and by no means provides proper support for the feature. Support beyond this is not planned. Recipe Manager plugins are an outdated concept that very few plugins still use, and they aren't possible to properly support without very invasive EMI mixins - something I do not intend to use in this project.
Runtime Registry Changes
The JEI API supports modifying the recipe and ingredient registries at runtime (ie after plugin registration is complete). This concept is not compatible with EMI, and it is not a practice I want to support. As such, after IModPlugin.onRuntimeAvailable has been invoked, all APIs for runtime registry modifications will throw an IllegalStateException if invoked to avoid potential confusion.
JEI Code Re-use
The plan is to replace more of the JEI internals in future updates. However, some parts of JEI simply aren't worth re-implementing for various reasons. Regardless, enough of JEI has already been replaced in TMRV that I can confidently say:
- It wouldn't be feasible to achieve the same improvements over JEMI with mixins (at least sanely), and
- Enough of the JEI internals have been replaced or removed that I don't consider this unfair to JEI, especially given the fact that JEI's license explicitly allows doing this.
License
This project is licensed under OSL-3.0. For more information, see LICENSE.
Some code was copied from EMI and JEI in compliance with their copyright licenses. All modifications present in this project are licensed under the same license as the rest of this project, OSL-3.0.
Project description from Modrinth.
Pick your setup
TooManyRecipeViewers by Minecraft version and loader
Choose the version and loader you play, then open the matching release.
1.21.1
1 loader build1.20.1
1 loader buildCheck the dependencies, then try the file in a copied instance before changing a world you care about.
Recent files
TooManyRecipeViewers versions and loaders
0.9.0+mc.21.1
toomanyrecipeviewers-0.9.0+mc.21.1.jar
28 Jun 2026
0.9.0+mc.20.1
toomanyrecipeviewers-0.9.0+mc.20.1.jar
28 Jun 2026
0.8.1+mc.21.1
toomanyrecipeviewers-0.8.1+mc.21.1.jar
25 May 2026
0.8.1+mc.20.1
toomanyrecipeviewers-0.8.1+mc.20.1.jar
25 May 2026
0.8.0+mc.21.1
toomanyrecipeviewers-0.8.0+mc.21.1.jar
24 May 2026
0.8.0+mc.20.1
toomanyrecipeviewers-0.8.0+mc.20.1.jar
24 May 2026
0.7.3+mc.21.1
toomanyrecipeviewers-0.7.3+mc.21.1.jar
25 Apr 2026
0.7.3+mc.20.1
toomanyrecipeviewers-0.7.3+mc.20.1.jar
25 Apr 2026
0.7.2+mc.21.1
toomanyrecipeviewers-0.7.2+mc.21.1.jar
20 Mar 2026
0.7.2+mc.20.1
toomanyrecipeviewers-0.7.2+mc.20.1.jar
20 Mar 2026
0.7.1+mc.21.1
toomanyrecipeviewers-0.7.1+mc.21.1.jar
3 Jan 2026
0.7.1+mc.20.1
toomanyrecipeviewers-0.7.1+mc.20.1.jar
3 Jan 2026
Looking for an older file? The official Modrinth project page is in Resources.