by ankorstore
Simple, modular, and observable Go framework for backend applications.
# Add to your Claude Code skills
git clone https://github.com/ankorstore/yokai<!-- TOC --> <!-- TOC -->Simple, modular, and observable Go framework for backend applications.
Building backend applications with Go is amazing.
But to build production-grade applications, you need to put in place a bunch of efforts and boilerplate code, introducing complexity not even related to the logic of your application (like dependencies wiring, configuration management, observability instrumentation, etc.).
To solve this, Yokai was created with the following goals in mind:
No comments yet. Be the first to share your thoughts!
SimpleModular: it can be extended with the available Yokai modules, or with your own, to build evolvable applications.Observable: it comes with built-in logging, tracing and metrics instrumentation, to build reliable applications.In other words, Yokai lets you focus on your application logic, while taking care of the rest.
Yokai's documentation is available at https://ankorstore.github.io/yokai.

core modules preloads logging, tracing, metrics and health check instrumentation, and expose a private HTTP server for infrastructure and debugging needs.extensions modules can be added to enrich your application features, like public HTTP / gRPC servers, workers, ORM, etc. You can also add the contrib modules or your own.dependency injection system, on which you can rely to build your application logic.Yokai was built using robust and well known Go libraries, such as: