Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marusyk/msa.buildingblocks
🧱 Common building blocks designed to aid the development of microservice-based applications using .NET
https://github.com/marusyk/msa.buildingblocks
azure azure-storage dotnet dotnet-core microservices msa nuget rabbitmq
Last synced: 3 months ago
JSON representation
🧱 Common building blocks designed to aid the development of microservice-based applications using .NET
- Host: GitHub
- URL: https://github.com/marusyk/msa.buildingblocks
- Owner: Marusyk
- License: mit
- Created: 2020-12-29T00:20:51.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-08-17T22:28:11.000Z (6 months ago)
- Last Synced: 2024-11-01T09:03:20.629Z (3 months ago)
- Topics: azure, azure-storage, dotnet, dotnet-core, microservices, msa, nuget, rabbitmq
- Language: C#
- Homepage:
- Size: 5.07 MB
- Stars: 5
- Watchers: 3
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MSA.BuildingBlocks
[![Stand With Ukraine](https://img.shields.io/badge/made_in-ukraine-ffd700.svg?labelColor=0057b7)](https://stand-with-ukraine.pp.ua)
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/Marusyk/grok.net/blob/main/LICENSE)
[![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](https://github.com/Marusyk/grok.net/blob/main/CONTRIBUTING.md)**MSA.BuildingBlocks** is a collection of common building blocks designed to aid the development of microservice-based applications using .NET. This library provides a variety of packages, each offering specific functionalities that cater to different aspects of microservice architecture.
Packages
The MSA.BuildingBlocks library includes the following packages:* [x] [**MSA.BuildingBlocks.ServiceClient**](src/MSA.BuildingBlocks.ServiceClient/README.md): Provides infrastructure for internal HTTP communication between services.
* [x] [**MSA.BuildingBlocks.Mapping**](src/MSA.BuildingBlocks.Mapping/README.md): Contains extensions and interfaces IMapTo<> and IMapFrom<> for AutoMapper, facilitating object-object mapping.
* [x] [**MSA.BuildingBlocks.CosmosDbMigration**](src/MSA.BuildingBlocks.CosmosDbMigration/README.md): Implements a migration mechanism for CosmosDB, ensuring your database schema is always up-to-date.
* [ ] **MSA.BuildingBlocks.EventBus**: Offers infrastructure for working with messaging-broker technologies like Azure Service Bus, RabbitMQ, and Kafka.
* [ ] **MSA.BuildingBlocks.RequestReplyBus**: Provides infrastructure for working with messaging-broker technologies like Azure Service Bus and RabbitMQ, specifically tailored for request-reply messaging patterns.
* [ ] **MSA.BuildingBlocks.FileStorage**: Facilitates work with file storage systems such as Azure Blob storage, Azure DataLake, and Amazon S3.
* [ ] **MSA.BuildingBlocks.Logging**: Contains a common logging infrastructure that uses Serilog with Elasticsearch format and Application Insight sink.
* [ ] **MSA.BuildingBlocks.Metrics**: Provides extensions for Prometheus metrics.
* [ ] **MSA.BuildingBlocks.Tracing**: Implements infrastructure for distributed tracing, improving observability in microservice architectures.
* [ ] **MSA.BuildingBlocks.WebApp**: Provides infrastructure for working with web applications based on ASP.NET Core.
* [ ] **MSA.BuildingBlocks.Caching**: Implements a common caching infrastructure, improving performance by reducing unnecessary database calls.## How to Install
Install as a library from [Nuget](https://www.nuget.org/packages?q=MSA.BuildingBlocks):
**[MSA.BuildingBlocks.Mapping](https://www.nuget.org/packages/MSA.BuildingBlocks.Mapping/)** ([usage](https://github.com/Marusyk/MSA.BuildingBlocks/blob/main/src/MSA.BuildingBlocks.Mapping/README.md))
[![NuGet version](https://img.shields.io/nuget/v/MSA.BuildingBlocks.Mapping.svg?logo=NuGet)](https://www.nuget.org/packages/MSA.BuildingBlocks.Mapping)
[![Nuget](https://img.shields.io/nuget/dt/MSA.BuildingBlocks.Mapping.svg)](https://www.nuget.org/packages/MSA.BuildingBlocks.Mapping)PM> Install-Package MSA.BuildingBlocks.Mapping
**[MSA.BuildingBlocks.ServiceClient](https://www.nuget.org/packages/MSA.BuildingBlocks.ServiceClient/)** ([usage](https://github.com/Marusyk/MSA.BuildingBlocks/blob/main/src/MSA.BuildingBlocks.ServiceClient/README.md))
[![NuGet version](https://img.shields.io/nuget/v/MSA.BuildingBlocks.ServiceClient.svg?logo=NuGet)](https://www.nuget.org/packages/MSA.BuildingBlocks.ServiceClient)
[![Nuget](https://img.shields.io/nuget/dt/MSA.BuildingBlocks.ServiceClient.svg)](https://www.nuget.org/packages/MSA.BuildingBlocks.ServiceClient)PM> Install-Package MSA.BuildingBlocks.ServiceClient
**[MSA.BuildingBlocks.CosmosDbMigration](https://www.nuget.org/packages/MSA.BuildingBlocks.CosmosDbMigration/)** ([usage](https://github.com/Marusyk/MSA.BuildingBlocks/blob/main/src/MSA.BuildingBlocks.CosmosDbMigration/README.md))
[![NuGet version](https://img.shields.io/nuget/v/MSA.BuildingBlocks.CosmosDbMigration.svg?logo=NuGet)](https://www.nuget.org/packages/MSA.BuildingBlocks.CosmosDbMigration)
[![Nuget](https://img.shields.io/nuget/dt/MSA.BuildingBlocks.CosmosDbMigration.svg)](https://www.nuget.org/packages/MSA.BuildingBlocks.CosmosDbMigration)PM> Install-Package MSA.BuildingBlocks.CosmosDbMigration