Tags
Creators
Details
1.0.0
Compatibility
Changes
v1.0.0 - Better Fabric Console (AIO Mod)
First official release of the server-side Fabric companion mod for Minecraft 26.1.2.
Key Features
- Embedded Netty Web Server: Serves a local web app on port 8000 (customizable in config).
- Master Password Security: SHA-256 password encryption with a first-run setup wizard and login session validation.
- Quick Actions Panel: Preset buttons for routine admin operations (Save, List, Weather, Day/Night) plus a modal wizard to add custom buttons.
- Spark Monitoring Integration: Auto-detects Spark on the host, fetches statistics (TPS, CPU load, JVM memory), and lets you toggle metrics tracking from the UI.
- Regex Log Filters: Interactive log stream supporting custom line filters to exclude, include, or color-highlight terminal output.
Installation
Copy better-fabric-console-1.0.0.jar to your server's mods folder and restart the server. Access the dashboard at http://localhost:8000.
Optional dependencies
Projects on Modrinth are automatically available through a Maven repository for use with JVM build tools such as Gradle. To learn more about the Modrinth Maven API, click here.
Note: When available, you should use the creator's maven repo instead as it will have transitive dependency information that the Modrinth Maven API does not. You may also end up with duplicate dependencies if you use a mix of Modrinth and non-Modrinth Maven repositories for your dependencies, because the group identifier will be different when served through the Modrinth Maven API.
Maven coordinates:
Version ID:
build.gradle:
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
// forRepositories(fg.repository) // Uncomment when using ForgeGradle
filter {
includeGroup "maven.modrinth"
}
}
}
// Standard Gradle dependency
dependencies {
implementation "maven.modrinth:BZdjO3bD:p2p3qMwS"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:BZdjO3bD:p2p3qMwS"
}

