Skip to content

Latest commit

 

History

History
18 lines (10 loc) · 811 Bytes

README.md

File metadata and controls

18 lines (10 loc) · 811 Bytes

Microservices Design Patterns in Golang

This repository is a collection of design patterns for building microservices-based architectures and aims to provide insights and examples on various design patterns commonly used with microservices in Golang.

Table of Contents

  1. Patterns

Patterns

2.1 Backend for Frontend (BFF)

The Backend for Frontend (BFF) pattern is used to create a specialized backend service for a specific frontend application. This pattern helps optimize the communication between the frontend and backend, providing API for the frontend's unique needs.

SoundCloud Clone Example

Practical implementation for SoundCloud clone includes Backend for Frontend (BFF) implementations for both mobile and web platforms.