diff --git a/content/roadmaps/109-golang/content/109-go-microservices/108-twirp.md b/content/roadmaps/109-golang/content/109-go-microservices/108-twirp.md index 73946d63b..ce95cabd0 100644 --- a/content/roadmaps/109-golang/content/109-go-microservices/108-twirp.md +++ b/content/roadmaps/109-golang/content/109-go-microservices/108-twirp.md @@ -1 +1,9 @@ -# Twirp \ No newline at end of file +# Twirp + +Twirp is a framework for service-to-service communication emphasizing simplicity and minimalism. It generates routing and serialization from API definition files and lets you focus on your application's logic instead of thinking about folderol like HTTP methods and paths and JSON. + +Twirp is similar to gRPC, but without the custom HTTP server and transport implementations: it runs on the standard library's extremely-well-tested-and-high-performance net/http Server. It can run on HTTP 1.1, not just http/2, and supports JSON serialization for easy debugging. + +Free Content +GitHub Repository +Getting started