1
0
mirror of https://github.com/go-kratos/kratos.git synced 2024-12-30 21:19:57 +02:00
Your ultimate Go microservices framework for the cloud-native era.
Go to file
包子 f3b68b0147
chore(issue/template): modify feature template and add proposal template (#1362)
* chore(issue/template): modify feature template and add proposal template
2021-08-24 11:18:08 +08:00
.github chore(issue/template): modify feature template and add proposal template (#1362) 2021-08-24 11:18:08 +08:00
api add v2.0.0 2021-07-08 13:54:09 +08:00
cmd optimize: template spaces to tabs (#1352) 2021-08-16 18:56:48 +08:00
config fix: code style (#1342) 2021-08-16 10:53:06 +08:00
docs docs: add wechat official account image to the Chinese document (#1190) 2021-07-14 23:45:07 +08:00
encoding refactor(encoding): optimize json encoding (#1339) 2021-08-17 09:19:57 +08:00
errors fix: 修复swagger 引用errors时找不到proto的错误 (#1348) 2021-08-16 14:21:42 +08:00
examples fix: correct client code in the example of TLS connection (#1355) 2021-08-17 23:07:06 +08:00
internal refactor: optimize the code and use golangci-lint to check for any errors (#1298) 2021-08-16 10:35:08 +08:00
log refactor: optimize the code and use golangci-lint to check for any errors (#1298) 2021-08-16 10:35:08 +08:00
metadata test(internal/context,middleware) add test (#1326) 2021-08-13 14:11:08 +08:00
metrics init v2 2021-02-17 17:14:47 +08:00
middleware refactor: optimize the code and use golangci-lint to check for any errors (#1298) 2021-08-16 10:35:08 +08:00
registry fix nacos 2021-05-27 14:34:33 +08:00
third_party feat: change grpc gateway import path (#1295) 2021-08-04 17:47:48 +08:00
transport refactor: optimize the code and use golangci-lint to check for any errors (#1298) 2021-08-16 10:35:08 +08:00
.gitignore init v2 2021-02-17 17:14:47 +08:00
.golangci.yml refactor: optimize the code and use golangci-lint to check for any errors (#1298) 2021-08-16 10:35:08 +08:00
app_test.go add appinfo test (#1293) 2021-08-03 19:07:09 +08:00
app.go refactor: optimize the code and use golangci-lint to check for any errors (#1298) 2021-08-16 10:35:08 +08:00
codecov.yml add codecov (#1195) 2021-07-25 22:11:56 +08:00
go.mod upgrade: grpc to 1.39 (#1312) 2021-08-09 22:10:37 +08:00
go.sum upgrade: grpc to 1.39 (#1312) 2021-08-09 22:10:37 +08:00
LICENSE init v2 2021-02-17 17:14:47 +08:00
Makefile add source code installing (#1113) 2021-06-27 13:12:56 +08:00
options_test.go refactor: optimize the code and use golangci-lint to check for any errors (#1298) 2021-08-16 10:35:08 +08:00
options.go refactor: optimize the code and use golangci-lint to check for any errors (#1298) 2021-08-16 10:35:08 +08:00
README_zh.md chore: just fix readme_zh.md (#1323) 2021-08-12 14:30:16 +08:00
README.md docs: default documents points to the english document (#1180) 2021-07-13 14:27:28 +08:00
ROADMAP.md roadmap: update roadmap progress (#828) 2021-04-13 13:28:24 +08:00
SECURITY.md Create SECURITY.md 2021-04-12 23:34:35 +08:00
version.go add version v2.0.5 2021-08-16 21:50:37 +08:00

Build Status GoDoc Go Report Card License Discord

Translate to: 简体中文

About Kratos

The name is inspired by the game God of War which is based on Greek myths, tells the Kratos from mortals to become a God of War and launches the adventure of killing god.

Kratos is a microservice-oriented governance framework implements 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 moderm 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 get github.com/go-kratos/kratos/cmd/kratos/v2@latest && kratos upgrade
kratos new helloworld
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 documention.

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.