Caravel.AspNetCore 0.33.0

dotnet add package Caravel.AspNetCore --version 0.33.0
                    
NuGet\Install-Package Caravel.AspNetCore -Version 0.33.0
                    
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="Caravel.AspNetCore" Version="0.33.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Caravel.AspNetCore" Version="0.33.0" />
                    
Directory.Packages.props
<PackageReference Include="Caravel.AspNetCore" />
                    
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 Caravel.AspNetCore --version 0.33.0
                    
#r "nuget: Caravel.AspNetCore, 0.33.0"
                    
#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=Caravel.AspNetCore&version=0.33.0
                    
Install Caravel.AspNetCore as a Cake Addin
#tool nuget:?package=Caravel.AspNetCore&version=0.33.0
                    
Install Caravel.AspNetCore as a Cake Tool

Caravel.AspNetCore

This package contains reusable middleware, http utilities that every application needs.

  • Exception Middleware
// Handle exceptions according to RFC: https://tools.ietf.org/html/rfc7807
builder.Services.AddExceptionHandler<GlobalExceptionHandler>();
builder.Services.AddProblemDetails();

// Map the middleware
_application.UseExceptionHandler();
{
  "code": "book_not_found",
  "title": "Book does not exist",
  "status": 404,
  "detail": "Book 53655b3d-48d5-4ac1-ba73-4318b3b702e8 does not exist",
}
  • ApiKey Endpoint Filter
services.Configure<ApiKeyOptions>(configuration.GetSection("Authentication"));

// Add to a group or single endpoints using: .AddEndpointFilter<ApiKeyEndpointFilter>();
var versionedGroup = application
    .MapGroup("api/v{version:apiVersion}")
    .WithApiVersionSet(apiVersionSet)
    .AddEndpointFilter<ApiKeyEndpointFilter>();
{
  "title": "Provide X-API-KEY header.",
  "status": 401,
  "code": "api_key_missing"
}
  • Endpoint Features

Add all endpoints features that implement IEndpointFeature interface.

builder.Services.AddEndpointFeatures(Assembly.GetExecutingAssembly());

Map feature endpoints.

ApiVersionSet apiVersionSet = app.NewApiVersionSet()
.HasApiVersion(new ApiVersion(1))
.ReportApiVersions()
.Build();

RouteGroupBuilder versionedGroup = app
.MapGroup("api/v{version:apiVersion}")
.WithApiVersionSet(apiVersionSet);

app.MapEndpointFeatures(versionedGroup);
  • User Context Implementation using HttpContextAccessor
// Requirement since it's injected in the UserContext implementation
services.AddHttpContextAccessor();
services.AddScoped<IUserContext, UserContext>();
// Inject IUserContext in your services

public MyService(IUserContext userContext) 
{
    var userId = userContext.UserId();
}
Product Compatible and additional computed target framework versions.
.NET 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.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.33.0 308 12/6/2024
0.32.0 240 10/12/2024
0.31.0 112 10/12/2024
0.30.0 108 10/12/2024
0.29.0 134 10/2/2024
0.28.0 122 10/2/2024
0.27.0 128 9/29/2024
0.26.0 94 9/28/2024
0.25.0 99 9/28/2024
0.24.0 132 8/20/2024
0.23.0 244 12/10/2023
0.20.0 475 9/24/2022
0.19.0 159 9/24/2022
0.17.0 253 9/27/2021
0.16.0 402 4/10/2021
0.15.1 434 1/23/2021
0.15.0 413 11/21/2020
0.14.0 494 11/15/2020
0.13.0 463 10/27/2020
0.12.1 452 10/14/2020
0.12.0 489 10/14/2020
0.11.1 513 10/12/2020
0.11.0 490 10/12/2020
0.10.0 539 9/10/2020
0.9.1 472 9/5/2020
0.9.0 483 9/5/2020
0.8.0 623 5/29/2020
0.7.0 511 5/16/2020
0.5.0 528 4/11/2020
0.4.2 527 4/11/2020
0.4.1 558 4/10/2020
0.4.0 701 1/27/2020
0.3.2 824 1/11/2020
0.3.1 557 1/11/2020
0.3.0 543 1/11/2020
0.2.2 634 1/4/2020
0.2.1 582 12/26/2019
0.2.0 584 12/26/2019