micro

module
v0.2.1 Latest Latest
Warning

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

Go to latest
Published: Nov 10, 2021 License: MIT

README

micro

Actions Status GoDoc GoReportCard

Just a simple tool kit for building microservices.

What is micro?

micro is a Go tool kit for enterprise targeted for microservices or well designed monolith application. It doesn't aim to be a framework, but just a microservices tool kit/library for easily and quickly build API applications.

micro's vision is to be come a good tool kit for beginner/intermediate developers and hence it should be:

  • Easy to use.
  • Compatible with Go, gRPC native libraries.
  • Come with default ready to use features.
  • Backward compatible.

I expect micro requires no more than 15 minutes for a beginner/intermediate developer to be able to use the tool kit effectively. This means micro will come with lots of useful default features, but at the same time provide developers ability to provide their alternatives.

micro is built around gRPC. It exposes both gRPC and REST API over 1 single port using grpc-gateway, with default ready to use logger, metrics, health check APIs.

Currently micro comes with a collection of plugins that can be found here

Note: I've been adding new improvements as well as changing the old APIs to make the code more readable. Since I'm not quite sure if anyone is using this project other than me, hence backward compatibility is not guaranteed 100% for now. Please use with your own risks.

Getting Started

Start your own

Create new gRPC service

func (s *service) SayHello(ctx context.Context, req *pb.HelloRequest) (*pb.HelloReply, error) {
    return &pb.HelloReply{
        Message: "Hello " + req.GetName(),
    }, nil
}

// Register implements server.Service interface
// It registers gRPC APIs with gRPC server.
func (s *service) Register(srv *grpc.Server) {
    pb.RegisterGreeterServer(srv, s)
}

// RegisterWithEndpoint implements server.EndpointService interface
// It is used to expose REST API using gRPC Gateway.
func (s *service) RegisterWithEndpoint(ctx context.Context, mux *runtime.ServeMux, addr string, opts []grpc.DialOption) {
    pb.RegisterGreeterHandlerFromEndpoint(ctx, mux, addr, opts)
}

Start a simple server, get configurations from environment variables.

package main

import (
    "github.com/pthethanh/micro/server"
)

func main() {
    srv := &service{}
    if err := server.ListenAndServe(srv); err != nil {
        panic(err)
    }
}

More complex with custom options.

package main

import (
    "github.com/pthethanh/micro/log"
    "github.com/pthethanh/micro/server"
)

func main() {
    srv := server.New(
        server.FromEnv(),
        server.PProf(""),
        server.Address(":8088"),
        server.JWT("secret"),
        server.Web("/", "web", "index.html"),
        server.Logger(log.Fields("service", "my_service")),
        server.CORS(true, []string{"*"}, []string{"POST"}, []string{"http://localhost:8080"}),
    )
    if err := srv.ListenAndServe( /*services...*/ ); err != nil {
        panic(err)
    }
}

See doc for more options.

Features

Currently, micro supports following features:

Server
  • Exposes both gRPC and REST in 1 single port.
  • Internal APIs:
    • Prometheus metrics.
    • Health checks.
    • Debug profiling.
  • Context logging/tracing with X-Request-Id/X-Correlation-Id header/metadata.
  • Authentication interceptors
  • Other options: CORS, HTTP Handler, Serving Single Page Application, Interceptors,...

See doc and examples for more detail.

Auth
  • Authenticator interface.
  • JWT
  • Authenticator, WhiteList, Chains.
  • Interceptors for both gRPC & HTTP

See doc for more detail.

Broker
  • Standard message broker interface.
  • Memory broker.
  • NATS plugin.
  • More plugins can be found here.

See doc for more detail.

Cache
  • Standard cache service interface.
  • Memory cache.
  • Redis plugin.
  • More plugins can be found here.

See doc for more detail.

Config
  • Standard config interface.
  • Config from environment variables.
  • Config from file and other options.

See doc for more detail.

Health
  • Health check for readiness and liveness.
  • Utilities for checking health.

See doc for more detail.

Log
  • Standard logger interface.
  • Logrus implementation.
  • Context logger & tracing using X-Request-Id and X-Correlation-Id
  • Interceptors for HTTP & gRPC.

See doc for more detail.

Util
  • Some utilities that might need during the development using micro.

See doc for more detail.

Interceptors and Other Options

micro is completely compatible with Go native and gRPC native, hence you can use external interceptors and other external libraries along with the provided options.

Interceptors: go-grpc-middleware

See examples for more detail.

Why a new standard libraries?

micro is inspired by go-kit and go-micro.

go-kit is a good tool kit, but one of the thing I don't like go-kit is its over use of interface{} which cause a lot of unnecessary type conversions and some of other abstractions in the libraries which are not compatible with Go native libraries. Although go-kit is very flexible, it's a little bit hard to use for beginner/intermediate developers. It has a lot of options for developers to choose and hence hard to force everyone inside a company to use the same set of standards.

go-micro is a great framework for microservices and very well designed. And it influences micro very much, but there are some coding styles that I don't like go-micro, that's why I made micro for myself.

Update: go-micro is now moved to https://github.com/asim/go-micro and it's very well designed. I recommend trying it first to see if it fits your needs.

Documentation

  • See doc for package and API descriptions.
  • Examples can be found in the examples directory.

Directories

Path Synopsis
Package auth defines standard interface for authentication.
Package auth defines standard interface for authentication.
jwt
Package jwt implements authentication interfaces using JWT.
Package jwt implements authentication interfaces using JWT.
Package broker defines standard interface for a message broker.
Package broker defines standard interface for a message broker.
memory
Package memory provides a message broker using memory.
Package memory provides a message broker using memory.
Package client define some utilities for dialing to target gRPC server.
Package client define some utilities for dialing to target gRPC server.
Package config defines standard interfaces for a config reader/writer.
Package config defines standard interfaces for a config reader/writer.
envconfig
Package envconfig provides a convenient way to load config from environment variables into a struct using https://github.com/kelseyhightower/envconfig.
Package envconfig provides a convenient way to load config from environment variables into a struct using https://github.com/kelseyhightower/envconfig.
examples
helloworld/helloworld
Package helloworld is a reverse proxy.
Package helloworld is a reverse proxy.
helloworld/server
Package main provide an implementation example of gRPC using micro.
Package main provide an implementation example of gRPC using micro.
Package health defines standard interfaces and utilities for health checks.
Package health defines standard interfaces and utilities for health checks.
Package log provides an easy-to-use and structured logger.
Package log provides an easy-to-use and structured logger.
plugins
broker/nats Module
cache/redis Module
Package server provides a convenient way to create or start a new server that serves both gRPC and HTTP over 1 single port with default useful APIs for authentication, health check, metrics,...
Package server provides a convenient way to create or start a new server that serves both gRPC and HTTP over 1 single port with default useful APIs for authentication, health check, metrics,...
Package status provide wrapper of package status, codes of grpc-go and some utilities for working with status, errors.
Package status provide wrapper of package status, codes of grpc-go and some utilities for working with status, errors.
util
reflectutil
Package reflectutil provides some convenient utilities for working with reflect.
Package reflectutil provides some convenient utilities for working with reflect.
validator
Package validator provides convenient utilities for validation.
Package validator provides convenient utilities for validation.

Jump to

Keyboard shortcuts

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