Scalar.AspNetCore 1.2.4

There is a newer version of this package available.
See the version list below for details.
dotnet add package Scalar.AspNetCore --version 1.2.4                
NuGet\Install-Package Scalar.AspNetCore -Version 1.2.4                
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="Scalar.AspNetCore" Version="1.2.4" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Scalar.AspNetCore --version 1.2.4                
#r "nuget: Scalar.AspNetCore, 1.2.4"                
#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.
// Install Scalar.AspNetCore as a Cake Addin
#addin nuget:?package=Scalar.AspNetCore&version=1.2.4

// Install Scalar.AspNetCore as a Cake Tool
#tool nuget:?package=Scalar.AspNetCore&version=1.2.4                

Scalar .NET API Reference Integration

This .NET package Scalar.AspNetCore provides an easy way to render a beautiful API reference based on an OpenAPI/Swagger. Made possible by the wonderful work of captainsafia on building the integration & docs written for the Scalar & .NET integration.

dotnet

🚀 Getting Started

  1. Install the package
dotnet add package Scalar.AspNetCore
  1. Add the using directive
using Scalar.AspNetCore;
  1. Configure your application

Add the following lines to your Program.cs for .NET 9:

builder.Services.AddOpenApi();

if (app.Environment.IsDevelopment())
{
    app.MapOpenApi();
    app.MapScalarApiReference();
}

or for .NET 8 with Swashbuckle:

builder.Services.AddEndpointsApiExplorer();
builder.Services.AddSwaggerGen();

if (app.Environment.IsDevelopment())
{
    app.UseSwagger(options =>
    {
        options.RouteTemplate = "openapi/{documentName}.json";
    });
    app.MapScalarApiReference();
}

That's it! 🎉 Now you will see the Scalar UI when using the defaults by navigating to /scalar/v1 in your browser.

Configuration

The MapScalarApiReference method has an optional parameter that you can use to customize the behavior of the Scalar UI:

// Fluent api
app.MapScalarApiReference(options =>
{
    options
        .WithTitle("My custom API")
        .WithTheme(ScalarTheme.Mars)
        .WithSidebar(false)
        .WithDefaultHttpClient(ScalarTarget.CSharp, ScalarClient.HttpClient)
        .WithPreferredScheme("ApiKey")
        .WithApiKeyAuthentication(x => x.Token = "my-api-key");
});

// Object initializer
app.MapScalarApiReference(options =>
{
    options.Title = "My custom API";
    options.Theme = ScalarTheme.Mars;
    options.ShowSidebar = false;
    options.DefaultHttpClient = new(ScalarTarget.CSharp, ScalarClient.HttpClient);
    options.Authentication = new ScalarAuthenticationOptions
    {
        PreferredSecurityScheme = "ApiKey",
        ApiKey = new ApiKeyOptions
        {
            Token = "my-api-key"
        }
    };
});

For more possible options and their default values, check out the ScalarOptions.cs class.

It is also possible to configure the options via dependency injection, using the options pattern:

builder.Services.Configure<ScalarOptions>(options => options.Title = "My custom API");
// or
builder.Services.AddOptions<ScalarOptions>().BindConfiguration("Scalar");

[!NOTE]
Options which are set via the MapScalarApiReference method will take precedence over options set via dependency injection.

Building & Release

dotnet build
dotnet pack --configuration Release
# then ping marc until we set up ci auto release!
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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net8.0

    • No dependencies.
  • net9.0

    • No dependencies.

NuGet packages (9)

Showing the top 5 NuGet packages that depend on Scalar.AspNetCore:

Package Downloads
devprime.stack.web

DevPrime Web

ZStack.AspNetCore

ZStack.AspNetCore框架

chd.Api.Base

Package Description

Corner49.Infra

An opinionated set of infrastructure libraries for .Net applications

Paralax.Docs.Scalar

Paralax.Docs.Scalar - Integration with Scalar for API documentation in microservices architecture

GitHub repositories (3)

Showing the top 3 popular GitHub repositories that depend on Scalar.AspNetCore:

Repository Stars
dotnet/AspNetCore.Docs
Documentation for ASP.NET Core
SteveDunn/Vogen
A semi-opinionated library which is a source generator and a code analyser. It Source generates Value Objects
SteveDunn/Intellenum
Intelligent Enums
Version Downloads Last updated
1.2.42 535 11/21/2024
1.2.41 1,884 11/20/2024
1.2.40 330 11/19/2024
1.2.39 3,819 11/17/2024
1.2.38 180 11/16/2024
1.2.37 3,570 11/14/2024
1.2.36 4,619 11/13/2024
1.2.35 1,319 11/12/2024
1.2.34 3,562 11/10/2024
1.2.33 1,496 11/8/2024
1.2.32 173 11/7/2024
1.2.31 2,216 11/6/2024
1.2.30 1,418 11/4/2024
1.2.29 2,287 11/1/2024
1.2.28 604 11/1/2024
1.2.27 2,861 10/30/2024
1.2.26 1,327 10/30/2024
1.2.25 1,569 10/29/2024
1.2.24 311 10/28/2024
1.2.23 2,642 10/27/2024
1.2.22 1,834 10/24/2024
1.2.21 2,647 10/23/2024
1.2.20 576 10/22/2024
1.2.19 86 10/22/2024
1.2.18 3,216 10/20/2024
1.2.17 325 10/20/2024
1.2.16 445 10/19/2024
1.2.15 487 10/19/2024
1.2.14 184 10/18/2024
1.2.13 176 10/18/2024
1.2.12 726 10/18/2024
1.2.11 190 10/17/2024
1.2.10 1,890 10/17/2024
1.2.9 8,159 10/7/2024
1.2.8 280 10/7/2024
1.2.7 432 10/3/2024
1.2.6 219 10/2/2024
1.2.5 805 9/28/2024
1.2.4 2,014 9/22/2024
1.2.3 4,076 9/6/2024
1.1.2 9,067 7/18/2024
1.1.1 4,561 5/21/2024
1.0.1 516 5/15/2024