golug

package module
v0.0.19 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 20, 2021 License: Apache-2.0 Imports: 12 Imported by: 0

README

golug

  1. protoc curl -OL https://github.com/protocolbuffers/protobuf/releases/download/v3.7.1/protoc-3.7.1-linux-x86_64.zip go get github.com/golang/protobuf/protoc-gen-go@v1.3.2 go install -v github.com/gogo/protobuf/protoc-gen-gofast go install -v github.com/grpc-ecosystem/grpc-gateway/protoc-gen-swagger go install -v github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway go install -v github.com/vektra/mockery/cmd/mockery

  2. golug是一个高度抽象和集成的微服务框架

  3. golug集成了config, log, command, plugin, grpc, http(fiber), task, broker等组件

  4. golug使用方便, 统一入口

  5. golug把http, grpc等server抽象成统一的entry, 统一使用习惯

  6. golug统一运行入口, 让多个服务同时集成和运行

  7. golug对grpc的protobuf进行定制处理, 让grpc server register更加方便

  8. golug 抽象plugin, 跟随config的动态化加载,

  9. golug config和watcher分离, config从本地文件加载, watcher可以从远程的任何的组件watch, 比如etcd

功能特性

  1. 健康检查, pprof
  2. 一切配置化, 通过plugin集成组建
  3. 集成log, metric, tracing
  4. 集成多种服务和server
  5. 一站式开发
  6. 环境自动检测, 本地项目生成
  7. 支持rest, grpc等

example

package http_entry

import (
	"fmt"

	"github.com/gofiber/fiber/v2"
	"github.com/pubgo/golug"
	"github.com/pubgo/golug/golug_entry"
	"github.com/pubgo/xerror"
)

func GetEntry() golug_entry.Entry {
	ent := golug.NewHttpEntry("http")
	xerror.Panic(ent.Version("v0.0.1"))
	xerror.Panic(ent.Description("entry http test"))

	ent.Use(func(ctx *fiber.Ctx) error {
		fmt.Println("ok")

		return ctx.Next()
	})

	ent.Group("/api", func(r fiber.Router) {
		r.Get("/", func(ctx *fiber.Ctx) error {
			_, err := ctx.WriteString("ok")
			return err
		})
	})

	return ent
}
import (
	"github.com/pubgo/golug"
	"github.com/pubgo/golug/example/ctl_entry"
	"github.com/pubgo/golug/example/grpc_entry"
	"github.com/pubgo/golug/example/http_entry"
	"github.com/pubgo/xerror"
)

func main() {
	xerror.Exit(golug.Init())
	xerror.Exit(golug.Run(
		http_entry.GetEntry(),
		ctl_entry.GetEntry(),
		grpc_entry.GetEntry(),
		grpc_entry.GetHttpEntry(),
	))
}

https://github.com/fullstorydev/grpcurl https://github.com/bojand/ghz

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func AfterStart

func AfterStart(fn func())

func AfterStop

func AfterStop(fn func())

func BeforeStart

func BeforeStart(fn func())

func BeforeStop

func BeforeStop(fn func())

func GetCfg added in v0.0.11

func GetCfg() *config.Config

func NewCtl added in v0.0.9

func NewCtl(name string) golug_ctl.Entry

func NewGrpc added in v0.0.9

func NewGrpc(name string) golug_grpc.Entry

func NewRest added in v0.0.9

func NewRest(name string) golug_rest.Entry

func NewTask added in v0.0.9

func NewTask(name string) golug_task.Entry

func OnCfg added in v0.0.11

func OnCfg(fn func(cfg *config.Config))

func Plugin added in v0.0.11

func Plugin(plg plugin.Plugin, opts ...plugin.ManagerOpt)

func Run

func Run(entries ...entry.Entry)

Types

This section is empty.

Directories

Path Synopsis
client
cmds
Package errors provides a way to return detailed information for an RPC request error.
Package errors provides a way to return detailed information for an RPC request error.
proto/hello
Package hello is a reverse proxy.
Package hello is a reverse proxy.
proto/login
Package login is a reverse proxy.
Package login is a reverse proxy.
net
tls
internal
Package registry is an interface for service discovery
Package registry is an interface for service discovery
mdns
Package mdns is a multicast dns registry
Package mdns is a multicast dns registry
server

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL