Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Mixin | 1,142 | a month ago | 1 | August 22, 2021 | 101 | mit | Java | |||
Mixin is a trait/mixin and bytecode weaving framework for Java using ASM | ||||||||||
React Emoji | 203 | 122 | 17 | 6 years ago | 15 | April 09, 2017 | 16 | mit | JavaScript | |
An emoji mixin for React | ||||||||||
Mixingradle | 80 | a month ago | 8 | mit | Groovy | |||||
Gradle plugin that adds the Mixin technology capability to your project. | ||||||||||
Mixinbooter | 24 | 7 days ago | 3 | lgpl-2.1 | Java | |||||
Allows any mixins that work on mods to work effortlessly. With a single class and an annotation. On 1.12.2. | ||||||||||
Abitbol | 16 | 14 | 12 | 9 days ago | 12 | March 08, 2021 | other | JavaScript | ||
The classiest javascript class library of the world | ||||||||||
Cakephp Phpstan | 14 | a year ago | 5 | December 27, 2021 | 2 | PHP | ||||
CakePHP 4 extension for PHPStan | ||||||||||
React Annotator | 12 | 8 years ago | 1 | mit | JavaScript | |||||
A React mixin to allow for user annotations directly on images. | ||||||||||
Jcomposition | 9 | 6 years ago | 1 | apache-2.0 | Java | |||||
Composition over inheritance. Lightweight Java/Android API for creating a compositions at compile-time | ||||||||||
Jmixer | 9 | 2 years ago | other | Java | ||||||
JMixer is the implementation of a mixin mechanism for the Java language | ||||||||||
Micromixin | 4 | 3 days ago | bsd-2-clause | Java | ||||||
A reimplementation of Sponge's Mixin Framework, a high-level java bytecode modification framework. |
Current Mixin Version: UniMix 0.12.2 (0.8.5 branch by LegacyModdingMC)
Current MixinExtra Version: 0.2.0-beta.8
repositories {
maven {
url 'https://maven.cleanroommc.com'
}
}
dependencies {
compile 'zone.rong:mixinbooter:8.2'
}
As of 4.2, MixinBooter's API has changed and all mods that uses mixins are encouraged to depend on MixinBooter, even those that mixin into vanilla/forge/library classes. To avoid mixin version mismatches with mods crashing trying to implement modded mixins (looking at you VanillaFix). Thanks to @embeddedt recommending and helping me introduce this change!
As of 5.0, MixinExtras by @LlamaLad7 is shaded. Available for developers to use.
As of 8.0, MixinBooter will now work from 1.8 - 1.12.2. One single build works with all these versions! (TODO: LiteLoader support?)
IEarlyMixinLoader
for mixins that affects vanilla, forge, or any classes that is passed to the classloader extremely early (e.g. Guava).ILateMixinLoader
for mixins that affects mods.@MixinLoader
annotation is, as of 4.2, deprecated. The functionality is akin to ILateMixinLoader
.