1. Overview
Out-of-the-box go-zero example with built-in API, scheduler, queue, script services.
The initial version of the framework is based on version 1.5.5 of the go-zero framework. The corresponding update will be released in the future with reference to the go-zero version.
There are many pitfalls in the process of getting familiar with the go-zero framework, and the derived go-zero-box framework is also equivalent to experience postings. I hope it can help developers get through the familiar period faster.
It is not easy to organize and open source. We will continue to write experiences on the use of the go-zero framework and new features of the go language. If you have any questions during the use process, please feel free to mention it.issue, If you think the project is helpful to you, I hope you can give it to me ⭐️star⭐️ Thank you very much.
2. Characteristics
-
We have made some directory divisions that conform to the Web application framework to make it easier to read developers' codes and reduce development costs;
-
Provides API code examples for initial business, including out-of-the-box business functions such as login, registration, authentication, etc.;
-
Provides API documentation for initial business, using the Apifox tool, import and use it;
-
Added more ORM APIs to support complex data operation services;
-
The asynq library was introduced, which implemented queue, scheduling, scripting and other functions;
-
The wire library was introduced to implement the dependency injection function;
-
pass
app [command]
In this way, in the multi-instance expansion scenario, the API, scheduler, and queue services can be deployed more conveniently; -
Excellent examples of new features of go language, such as ternary expressions implemented through paradigms
(a == b, a, b)
;···
We are continuing to update, so stay tuned.
3. Framework introduction
go-zreo framework + goctl code generation tool + wire dependency injection + Makefile to achieve automated compilation.
go-zero is a web and rpc framework that integrates various engineering practices, shortening the distance from demand to online, ensuring the stability of large concurrent servers through elastic design, and withstanding sufficient practical tests.
goctl is a code generation tool under the go-zero microservice framework. Using goctl can significantly improve development efficiency and allow developers to focus their time on business development. Its functions include: API service generation, RPC service generation, model code generation, and template management.
wire is a dependency injection tool used to solve the problem of dependency injection in Go language. Wire allows you to easily manage your application's dependencies and ensure they are injected at compile time.
The Makefile file describes the compilation rules of project projects under Linux system, only onemake bild
Command, the entire project starts to automatically build the project environment, no longer need to manually execute a large number ofgo build
The command, the Makefile file defines a series of rules, indicating the compilation order, dependencies, whether recompilation is required, etc. You can entermake help
View the command set.
Source code address:/prf16/go-zero-box