You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
houseme 0d9319b1ee
fix: Replace the docker image of Polaris (#1999)
2 years ago
.github fix: Replace the docker image of Polaris (#1999) 2 years ago
api docs: fix some typos (#1852) 2 years ago
cmd fix:#1987 Http and grpc generate route alignment (#1988) 2 years ago
config feat(log): log load config only when Debug level (#1899) 2 years ago
contrib fix: Replace the docker image of Polaris (#1999) 2 years ago
docs docs: add wechat official account image to the Chinese document (#1190) 3 years ago
encoding feat: decode google.protobuf.BytesValue compatible base64.URLEncoding. (#1991) 2 years ago
errors feat: add error cause for statck trace (#1910) 2 years ago
hack fix: Replace the docker image of Polaris (#1999) 2 years ago
internal fix: query params: parse list failed, unsupported message type: "google.protobuf.Struct" #1967 (#1989) 2 years ago
log feat(log): Helper implemented io.Writer (#1927) 2 years ago
metadata correct the func name in meatadata log (#1915) 2 years ago
metrics chore: fix metrics readme (#1415) 3 years ago
middleware feat: add error cause for statck trace (#1910) 2 years ago
registry update contrib readme (#1831) 2 years ago
selector feat(selector): add node scheme (#1932) 2 years ago
third_party style(cmd/errors/examples/middleware/transport): fix common words' spelling mistakes (#1872) 2 years ago
transport fix(transport/http): responseEncoder should not write any data when it need to write nil (#1945) 2 years ago
.gitignore init v2 3 years ago
.golangci.yml feat: add opensergo metadata (#1947) 2 years ago
CODE_OF_CONDUCT.md doc: create CODE_OF_CONDUCT.md (#1585) 3 years ago
CONTRIBUTING.md Create CONTRIBUTING.md 3 years ago
LICENSE init v2 3 years ago
Makefile fix: examples lint error (#1454) 3 years ago
README.md fix: add 'go mod tidy' cmd to make quick-start available (#1973) 2 years ago
README_zh.md Update README_zh.md (#1975) 2 years ago
ROADMAP.md feat:edit readme and roadmap (#1504) 3 years ago
SECURITY.md Create SECURITY.md 3 years ago
app.go fix: starter parent ctx (#1895) 2 years ago
app_test.go test:remove testify go mod (#1766) 2 years ago
codecov.yml add codecov (#1195) 3 years ago
go.mod deps:upgrade go mod version (#1800) 2 years ago
go.sum deps:upgrade go mod version (#1800) 2 years ago
options.go fix(app): use new context when app stop (#1589) 3 years ago
options_test.go feat(log): Helper implemented io.Writer (#1927) 2 years ago
version.go deps: upgrade kratos version to v2.2.2 (#1944) 2 years ago

README.md

Build Status GoDoc codeCov Go Report Card License Awesome Go Discord

Go Kratos - A Go framework for microservices. | Product Hunt

Translate to: 简体中文

About Kratos

The name is inspired by the game God of War which is based on Greek myths, tells the adventures of Kratos who became a god of war from a mortal and launched a god-killing slaughter.

Kratos is a microservice-oriented governance framework implemented by golang, which offers convenient capabilities to help you quickly build a bulletproof application from scratch, such as:

Kratos is accessible, powerful, and provides tools required for large, robust applications.

Learning Kratos

Kratos has the most extensive and thorough documentation and example library of all modern web application frameworks, making it a breeze to get started with the framework.

We also provide a modern template, This template should help reduce the work required to setup up a modern project.

Goals

Kratos boosts your productivity. With the integration of excellent resources and further support, programmers can get rid of most issues might encounter in the field of distributed systems and software engineering such that they are allowed to focus on the release of businesses only. Additionally, for each programmer, Kratos is also an ideal one learning warehouse for many aspects of microservices to enrich their experiences and skills.

Principles

  • Simple: Appropriate design, plain and easy code.
  • General: Cover the various utilities for business development.
  • Highly efficient: Speeding up the efficiency of businesses upgrading.
  • Stable: The base libs validated in the production environment which have the characters of the high testability, high coverage as well as high security and reliability.
  • Robust: Eliminating misusing through high quality of the base libs.
  • High-performance: Optimal performance excluding the optimization of hacking in case of unsafe. 
  • Expandability: Properly designed interfaces, you can expand utilities such as base libs to meet your further requirements.
  • Fault-tolerance: Designed against failure, enhance the understanding and exercising of SRE within Kratos to achieve more robustness.
  • Toolchain: Includes an extensive toolchain, such as the code generation of cache, the lint tool, and so forth.

Getting Started

Create a kratos playground through docker:

docker run -it --rm -p 8000:8000 --workdir /workspace golang
apt-get update && apt-get -y install protobuf-compiler
export GOPROXY=https://goproxy.io,direct
go install github.com/go-kratos/kratos/cmd/kratos/v2@latest && kratos upgrade
kratos new helloworld
cd helloworld/ && go mod tidy
kratos run

Use a browser to open and visit: http://localhost:8000/helloworld/kratos, The kratos program is running!

If you need more, please visit the kratos documentation.

Security Vulnerabilities

If you discover a security vulnerability within Kratos, please send an e-mail to tonybase via go-kratos@googlegroups.com. All security vulnerabilities will be promptly addressed.

Community

Contributors

Thank you for considering contributing to the Kratos framework! The contribution guide can be found in the Kratos documentation.

License

The Kratos framework is open-sourced software licensed under the MIT license.

Acknowledgments

The following project had particular influence on kratos's design.

  • go-kit/kit is a programming toolkit for building microservices in go.
  • asim/go-micro a distributed systems development framework.
  • google/go-cloud is go cloud development kit.
  • tal-tech/go-zero is a web and rpc framework with lots of builtin engineering practices.
  • beego/beego is a web framework including RESTful APIs, web apps and backend services.