micro/proxy
2019-06-12 12:45:42 +01:00
..
grpc move options under config 2019-06-12 12:45:42 +01:00
http move options under config 2019-06-12 12:45:42 +01:00
mucp move options under config 2019-06-12 12:45:42 +01:00
proxy.go move options under config 2019-06-12 12:45:42 +01:00
README.md Further consolidate the libraries 2019-06-03 18:44:43 +01:00

Go Proxy License GoDoc

Go Proxy is a proxy library for Go Micro.

Overview

Go Micro is a distributed systems framework for client/server communication. It handles the details around discovery, fault tolerance, rpc communication, etc. We may want to leverage this in broader ecosystems which make use of standard http or we may also want to offload a number of requirements to a single proxy.

Features

  • Transparent Proxy - Proxy requests to any micro services through a single location. Go Proxy enables you to write Go Micro proxies which handle and forward requests. This is good for incorporating wrappers.

  • Single Backend Router - Enable the single backend router to proxy directly to your local app. The proxy allows you to set a router which serves your backend service whether its http, grpc, etc.

  • Protocol Aware Handler - Set a request handler which speaks your app protocol to make outbound requests. Your app may not speak the MUCP protocol so it may be easier to translate internally.

  • Control Planes - Additionally we support use of control planes to offload many distributed systems concerns.

    • Consul - Using Connect-Native to provide secure mTLS.
    • NATS - Fully leveraging NATS as the control plane and data plane.