Paralax 1.0.448

dotnet add package Paralax --version 1.0.448
                    
NuGet\Install-Package Paralax -Version 1.0.448
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Paralax" Version="1.0.448" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Paralax" Version="1.0.448" />
                    
Directory.Packages.props
<PackageReference Include="Paralax" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Paralax --version 1.0.448
                    
#r "nuget: Paralax, 1.0.448"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=Paralax&version=1.0.448
                    
Install Paralax as a Cake Addin
#tool nuget:?package=Paralax&version=1.0.448
                    
Install Paralax as a Cake Tool

<div align="center">

Paralax Logo

Paralax Framework

.NET 9.0 Build Status NuGet Version Coverage Status

</div>


Overview

The Paralax Framework is a modern, powerful, and modular open-source .NET framework optimized for building microservice architectures. It provides essential components, including encryption, CQRS, logging, messaging, persistence, cloud integration, and HTTP services. Paralax is optimized for .NET 9.0 and integrates seamlessly into cloud-native environments, making it ideal for scalable and resilient distributed systems.

Whether you’re building microservices from scratch or extending existing services, Paralax offers a comprehensive toolkit that is both flexible and easy to integrate.


Key Features

  • Modular and Extensible: Tailor your microservices by using only the components you need.
  • Security-First: Offers encryption, hashing, signing, and secrets management out of the box.
  • Advanced CQRS and Event Sourcing: Full support for the Command-Query Responsibility Segregation (CQRS) pattern and event sourcing for scalable applications.
  • Message Brokering: Seamless integration with RabbitMQ, Kafka, and other message brokers.
  • HTTP & Web API: Robust HTTP client, server support, and API gateway integration.
  • Serialization: Built-in support for both JSON and binary serialization, crucial for optimized data transfer between microservices.
  • Cloud-Native: Optimized for Kubernetes, Docker, and other cloud platforms.
  • Observability: Built-in support for logging, metrics, and distributed tracing using OpenTelemetry and Jaeger.
  • Persistence: Ready-to-use integrations with MongoDB, Redis, and Consul for robust data storage solutions.
  • API Documentation: Integration with Swagger and ReDoc to generate comprehensive API documentation.

Table of Contents


Getting Started

Prerequisites

  • .NET 9.0 SDK or higher: Download .NET 9.0
  • A container platform like Docker or Kubernetes (for cloud-native applications).

Installation

You can install the framework and its core components via NuGet:

dotnet add package Paralax
dotnet add package Paralax.Auth
dotnet add package Paralax.CQRS
dotnet add package Paralax.Logging
dotnet add package Paralax.MessageBrokers

For specialized functionality HTTP, Web API, and message brokers:

dotnet add package Paralax.HTTP
dotnet add package Paralax.WebAPI
dotnet add package Paralax.MessageBrokers.RabbitMQ
dotnet add package Paralax.Tracing.Jaeger

Usage

Once installed, you can start configuring Paralax in your microservices project. Below is an example of configuring logging, tracing, and CQRS with RabbitMQ for message brokering.

public static void Main(string[] args)
{
    var builder = WebApplication.CreateBuilder(args);

    // Add Paralax components
    builder.Services.AddParalaxLogging();
    builder.Services.AddParalaxTracing();
    builder.Services.AddParalaxCQRS();
    builder.Services.AddParalaxMessageBrokerRabbitMQ();

    var app = builder.Build();

    // Middleware setup
    app.UseParalax();

    app.Run();
}

Components

Paralax.Auth

The Paralax.Auth module provides authentication and authorization mechanisms, including JWT-based authentication and OAuth2 integrations.

Paralax.CQRS

This module implements the CQRS (Command-Query Responsibility Segregation) pattern, allowing for scalable, event-driven microservices. It provides:

  • Commands: Handling write operations.
  • Queries: Handling read operations.
  • Events: Implementing event sourcing.

Paralax.MessageBrokers

Supports popular messaging systems like RabbitMQ and Kafka. It enables asynchronous communication between microservices and ensures reliable delivery of messages.

Example:

services.AddParalaxMessageBrokerRabbitMQ(options =>
{
    options.HostName = "rabbitmq.example.com";
});

Paralax.HTTP

Provides a robust HTTP client and server integration, supporting binary serialization of payloads for performance-critical services.

Paralax.WebAPI

A framework built on top of ASP.NET Core Web API, optimized for building APIs with minimal overhead. It integrates binary serialization for efficient communication and supports Swagger for API documentation.

Paralax.Logging

Out-of-the-box logging integration with support for multiple sinks (e.g., Console, Elasticsearch, etc.). It uses best-in-class logging libraries to ensure visibility into your microservices.

Paralax.Tracing

Integrated distributed tracing with OpenTelemetry and Jaeger for monitoring service calls and diagnosing bottlenecks in complex microservice architectures.


Contributing

We welcome contributions from the open-source community! To contribute, please refer to the Contributing Guide for more details on how to get started.

Reporting Issues

If you encounter bugs or issues while using Paralax, please report them through the GitHub Issues page.


License

The Paralax Framework is licensed under the Apache-2.0 License. See the LICENSE file for details.


Credits

The Paralax Framework is maintained by ITSharpPro. We appreciate contributions from developers around the world who help improve the framework for the global development community.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (31)

Showing the top 5 NuGet packages that depend on Paralax:

Package Downloads
Paralax.CQRS.Queries

Paralax.CQRS.Queries - Query handling for CQRS in microservices architecture

Paralax.CQRS.Commands

Paralax.CQRS.Commands - Command handling for CQRS in microservices architecture

Paralax.CQRS.Events

Paralax.CQRS.Events - Event handling for CQRS in microservices architecture

Paralax.MessageBrokers

Paralax.MessageBrokers - A framework for handling message-based communication in a microservices architecture

Paralax.WebApi

Paralax.WebApi - Framework for building Web APIs in microservices architecture

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.448 466 2/8/2025
1.0.446 322 2/8/2025
1.0.443 462 1/31/2025
1.0.441 335 1/31/2025
1.0.436 501 12/15/2024
1.0.434 323 12/15/2024
1.0.432 293 12/15/2024
1.0.430 295 12/15/2024
1.0.428 282 12/15/2024
1.0.424 282 12/14/2024
1.0.420 385 11/23/2024
1.0.415 370 11/9/2024
1.0.410 324 11/9/2024
1.0.406 363 10/30/2024
1.0.404 312 10/30/2024
1.0.401 420 10/18/2024
1.0.396 313 10/18/2024
1.0.388 291 10/18/2024
1.0.384 286 10/18/2024
1.0.380 283 10/17/2024
1.0.376 277 10/17/2024
1.0.372 269 10/17/2024
1.0.368 291 10/17/2024
1.0.364 278 10/17/2024
1.0.356 744 10/3/2024
1.0.354 324 10/3/2024
1.0.352 300 10/3/2024
1.0.350 306 10/3/2024
1.0.348 297 10/3/2024
1.0.346 309 10/3/2024
1.0.344 317 10/3/2024
1.0.343 316 10/1/2024
1.0.342 310 9/30/2024
1.0.339 291 9/30/2024
1.0.338 303 9/30/2024
1.0.335 429 9/30/2024
1.0.332 230 9/30/2024
1.0.331 292 9/30/2024
1.0.328 293 9/30/2024
1.0.325 300 9/30/2024
1.0.322 325 9/30/2024
1.0.319 319 9/30/2024
1.0.305 300 9/29/2024
1.0.303 305 9/29/2024
1.0.301 175 9/29/2024
1.0.299 95 9/29/2024
1.0.297 216 9/29/2024
1.0.295 135 9/29/2024
1.0.293 102 9/29/2024
1.0.291 98 9/29/2024
1.0.285 279 9/29/2024
1.0.268 115 9/29/2024
1.0.266 297 9/29/2024
1.0.264 106 9/29/2024
1.0.258 165 9/28/2024
1.0.256 260 9/28/2024
1.0.254 229 9/28/2024
1.0.252 208 9/28/2024
1.0.248 269 9/28/2024
1.0.246 103 9/28/2024
1.0.244 163 9/28/2024
1.0.242 202 9/28/2024
1.0.214 148 9/28/2024
1.0.211 136 9/28/2024
1.0.205 184 9/28/2024
1.0.202 128 9/28/2024
1.0.199 138 9/27/2024
1.0.196 138 9/27/2024
1.0.193 133 9/27/2024
1.0.190 139 9/27/2024
1.0.187 116 9/27/2024
1.0.184 164 9/27/2024
1.0.181 150 9/27/2024
1.0.178 134 9/27/2024
1.0.175 226 9/26/2024
1.0.169 562 9/26/2024
1.0.166 307 9/24/2024
1.0.159 376 9/23/2024
1.0.155 330 9/23/2024
1.0.152 257 9/23/2024
1.0.148 295 9/23/2024
1.0.145 310 9/23/2024
1.0.140 436 9/22/2024
1.0.137 289 9/22/2024
1.0.131 150 9/22/2024
1.0.104 405 9/21/2024
1.0.101 147 9/21/2024
1.0.96 321 9/21/2024
1.0.60 149 9/20/2024
1.0.48 116 9/20/2024
1.0.44 117 9/20/2024
1.0.38 125 9/19/2024
1.0.36 111 9/19/2024
1.0.35 113 9/19/2024
1.0.31 117 9/18/2024
1.0.28 354 9/18/2024
1.0.24 117 9/18/2024
1.0.21 109 9/18/2024
1.0.19 131 9/18/2024

Initial release of the Paralax framework for building scalable services.