Modular by design
Compose isolated modules, controllers and services without turning your application into a tightly coupled monolith.
Gorix is an open-source Go framework for APIs, microservices, fintech platforms, AI systems and production infrastructure.

package main
import "github.com/Gromosome/gorix/gorix"
func main() {
app := gorix.New()
app.RegisterModules(
UserModule(),
PaymentModule(),
)
app.Listen()
}Keep application code structured while Gorix provides conventions for routing, modules, validation, configuration and infrastructure integration.
Compose isolated modules, controllers and services without turning your application into a tightly coupled monolith.
A Go-native foundation designed for predictable latency, efficient resource use and production observability.
Build APIs and distributed services around clear boundaries, configuration profiles and pluggable infrastructure.
Structured validation, controlled configuration and explicit framework conventions reduce avoidable production risk.
Readable project structure, focused APIs and documentation that keep teams productive as systems grow.
Gorix promotes explicit modules and focused layers so business logic remains testable, reusable and independent from delivery mechanisms.
Explore core conceptsRead the setup guide, inspect the source, and help shape the framework through verified bug reports.