{"id":29179698,"url":"https://github.com/trendyol/chaki","last_synced_at":"2025-07-01T19:06:21.903Z","repository":{"id":246803608,"uuid":"815144129","full_name":"Trendyol/chaki","owner":"Trendyol","description":"Chaki is an application builder framework designed to simplify the development process in Go","archived":false,"fork":false,"pushed_at":"2025-05-14T08:08:34.000Z","size":4213,"stargazers_count":29,"open_issues_count":4,"forks_count":2,"subscribers_count":9,"default_branch":"main","last_synced_at":"2025-05-14T08:47:33.745Z","etag":null,"topics":["fiber","framework","go","kafka","swagger"],"latest_commit_sha":null,"homepage":"https://trendyol.github.io/chaki/","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Trendyol.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-06-14T12:53:51.000Z","updated_at":"2025-05-14T08:08:25.000Z","dependencies_parsed_at":"2024-07-11T12:29:38.056Z","dependency_job_id":"c031d4fe-75fd-4f63-9ca0-d0dd88ddac32","html_url":"https://github.com/Trendyol/chaki","commit_stats":null,"previous_names":["trendyol/chaki"],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/Trendyol/chaki","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Trendyol%2Fchaki","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Trendyol%2Fchaki/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Trendyol%2Fchaki/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Trendyol%2Fchaki/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Trendyol","download_url":"https://codeload.github.com/Trendyol/chaki/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Trendyol%2Fchaki/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263021821,"owners_count":23401148,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["fiber","framework","go","kafka","swagger"],"created_at":"2025-07-01T19:06:06.726Z","updated_at":"2025-07-01T19:06:21.888Z","avatar_url":"https://github.com/Trendyol.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n[![OpenSSF Scorecard](https://api.scorecard.dev/projects/github.com/Trendyol/chaki/badge)](https://scorecard.dev/viewer/?uri=github.com/Trendyol/chaki)\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"./logo.png\" width=256 /\u003e\n\u003c/p\u003e\n\n\u003cdiv align=\"center\"\u003e \n\u003cimg src=\"https://github.com/Trendyol/chaki/actions/workflows/golangci-lint.yml/badge.svg\" /\u003e\n\u003cimg src=\"https://img.shields.io/badge/License-MIT-yellow.svg\"\u003e\n\u003c/div\u003e\n\n\n# Chaki\n\nChaki is an application builder framework designed to simplify the development process in Go by abstracting processes such as tracing, logging, Kafka integration, and Swagger documentation. It reduces the amount of boilerplate code, enhancing developer experience and productivity. Chaki handles complex tasks for you, allowing you to focus more on the core functionalities of your application.\n\nUsing Chaki, you can:\n\n- Easily integrate the technologies and tools into your project with just a few configuration definitions.\n- Quickly adapt to technological changes minumum effort on your stack, while continuing with your existing workflow.\n- Create projects with code that primarily contains business logic, freeing you from technical bootstrap components.\n\n## Usage\n\nA simple usage example is provided below. For more detailed examples, please refer to the [examples](https://github.com/Trendyol/chaki/example) directory.\n\n```go\nfunc main() {\n\t// create instance\n\tapp := chaki.New()\n\n\t// add modules\n\tapp.Use(\n\t foomodule.Module(),\n\t)\n\n\t// provide constructors\n\tapp.Provide(\n\t  NewFooRepository,\n\t  NewFooService,\n\t  NewBarClient,\n\t  NewFooController,\n\t  NewFooCreatedConsumer,\n\t  // or you can just provide an already created instance\n\t  chaki.Valuer(barRepositoryInstance),\n\t)\n\n\t// start application\n\tif err := app.Start(); err != nil {\n\t    logger.Fatal(err)\n\t}\n}\n```\n\n## Modules\n\nChaki is fundamentally based on the `uber-go/fx` dependency injection system and includes additional features such as a module system. This framework, built on a simple foundation, derives much of its power from its modules.\n\n- Modules are easily added to the system with `app.Use`.\n- Once added, you can directly use instances produced by the module, such as `*gorm.Gorm` or `sarama.SyncProducer`, in any constructor you want.\n- Modules can be easily configured using configuration files.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftrendyol%2Fchaki","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftrendyol%2Fchaki","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftrendyol%2Fchaki/lists"}