https://github.com/not-coded/codelib
A Minecraft Fabric API/Library that provides useful features.
https://github.com/not-coded/codelib
api fabric fabric-mod fabricapis java library minecraft mod
Last synced: about 2 months ago
JSON representation
A Minecraft Fabric API/Library that provides useful features.
- Host: GitHub
- URL: https://github.com/not-coded/codelib
- Owner: not-coded
- License: gpl-3.0
- Created: 2023-01-27T14:01:10.000Z (over 2 years ago)
- Default Branch: stonecutter
- Last Pushed: 2025-03-23T17:35:33.000Z (2 months ago)
- Last Synced: 2025-03-23T18:31:20.969Z (2 months ago)
- Topics: api, fabric, fabric-mod, fabricapis, java, library, minecraft, mod
- Language: Java
- Homepage: https://modrinth.com/mod/codelib
- Size: 396 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES.md
- License: LICENSE
Awesome Lists containing this project
README

yeahh!! this is the fabric library mod that i *sometimes* use in my projects.
did i mention it has **0**, yes **zero** dependencies?
## Features
* read the javadocs somewhere (todo: implement javadocs github pages)
* more coming soon## How to use
Add the following to your `gradle.properties`
```properties
# https://github.com/not-coded/codelib
codelib_version=...+minecraft_version# Example
codelib_version=2.0.0+1.20
```And `build.gradle`
```groovy
repositories {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
content {
includeGroup "maven.modrinth"
}
}
}dependencies {
modApi "maven.modrinth:codelib:${project.codelib_version}"// you can include it directly if you want you don't want your users to download it
include "maven.modrinth:codelib:${project.codelib_version}"
}
```