Piral.Blazor.Orchestrator 0.4.1

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

// Install Piral.Blazor.Orchestrator as a Cake Tool
#tool nuget:?package=Piral.Blazor.Orchestrator&version=0.4.1                

Piral Logo

Piral.Blazor.Orchestrator · GitHub License | GitHub Tag GitHub Issues Gitter Chat

The orchestration module for creating server-side micro frontends using Blazor.

Installation & Setup

For using Piral.Blazor.Server you'll need an ASP.NET Core project using Blazor (server).

You'll only need to add a single NuGet package to the project:

install-package Piral.Blazor.Orchestrator

With the package installed you'll need to configure your project to actually use Piral.Blazor.Orchestrator.

// Important - an `HttpClient` needs to be present for the MfDiscoveryLoaderService - for
// other services it might not be needed; so you can regard this as optional
builder.Services.AddHttpClient();
// Add DI services
builder.Services.AddMicrofrontends<MfDiscoveryLoaderService>();

// Configure container
builder.Host.UseMicrofrontendContainers();

// Use middleware
app.UseMicrofrontends();

A full example using these three integration points looks like:

using Piral.Blazor.Orchestrator;
using Piral.Blazor.Orchestrator.Loader;

var builder = WebApplication.CreateBuilder(args);

builder.Services.AddRazorComponents()
    .AddInteractiveServerComponents();

builder.Services.AddHttpClient();
builder.Services.AddSingleton<WeatherForecastService>();
builder.Services.AddMicrofrontends<MfDiscoveryLoaderService>();

builder.Host.UseMicrofrontendContainers();

var app = builder.Build();

app.UseHttpsRedirection();
app.UseStaticFiles();
app.UseRouting();
app.UseAntiforgery();
app.UseMicrofrontends();

app.MapMicrofrontends<App>();

app.Run();

With these in place you can modify your layout to integrate the necessary parts.

@inherits LayoutComponentBase

<PageTitle>Example</PageTitle>
<PageStyles />

<div class="page">
    <div class="sidebar">
        <NavMenu />
    </div>

    <main>
        <div class="top-row px-4">
            <a href="https://docs.microsoft.com/aspnet/" target="_blank">About</a>
        </div>

        <article class="content px-4">
            @Body
        </article>
    </main>
</div>

<PageScripts />

If you want to enable routing for your micro frontends (such that they can use the MapRoute feature) you should also exchange the Router in your App.razor with the MfRouter like so:

<MfRouter AppAssembly="@typeof(App).Assembly">
    <Found Context="routeData">
        <MfRouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
        <FocusOnNavigate RouteData="@routeData" Selector="h1" />
    </Found>
    <NotFound>
        <PageTitle>Not found</PageTitle>
        <LayoutView Layout="@typeof(MainLayout)">
            <p role="alert">Sorry, there's nothing at this address.</p>
        </LayoutView>
    </NotFound>
</MfRouter>

The rest you can keep (or change) as you like.

Note: Using the MfRouteView in the code above is optional. We do recommend it, however, if you just keep on using RouteView then it would work, too.

Finally, remove the reference to any Blazor script, i.e., transform your App.razor to have no <script> tag such as:

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <base href="/" />
    <link rel="stylesheet" href="app.css" />
    <HeadOutlet />
</head>

<body>
    <Routes @rendermode="InteractiveServer" />
</body>
</html>

The script will be injected (and run) from the orchestrator.

Extended Configuration

By default, the micro frontend loader takes an empty feed of micro frontends. This way, nothing will be loaded and the application will remain empty with respect to the loaded micro frontends. To change this you will need to adjust the configuration, e.g., by modifying the appsettings.json file:

{
  "Logging": {
    "LogLevel": {
      "Default": "Information",
      "Microsoft.AspNetCore": "Warning"
    }
  },
  "AllowedHosts": "*",
  "Microfrontends": {
    "CacheDir": ".cache",
    "DiscoveryInfoUrl": "https://feed.piral.cloud/api/v1/microfrontends/myfeed",
    "DiscoveryUpdateUrl": "wss://feed.piral.cloud/api/v1/pilet/myfeed",
    "NugetFeeds": {
      "Source": {
        "Url": "https://feed.piral.cloud/api/v1/nuget/myfeed/index.json"
      },
      "Public": {
        "Url": "https://api.nuget.org/v3/index.json"
      }
    }
  }
}

The given configuration is an example. The Microfrontends section is used to include the respective configuration. If this configuration is not present then default values (which match the shown values exactly) are applied. If you, e.g., want to have your cache stored in a different (relative or absolute) directory you'd need to have at least a property CacheDir in the config.

The NugetFeeds need to have all the feeds you want to use for resolving the dependencies of your micro frontends. Keep in mind that the actual nupkg file containing the micro frontends also needs to be hosted somewhere. This feed, which is usually referenced from the feed service, therefore also needs to be part of this configuration.

An example with more NuGet feeds:

{
  "Logging": {
    "LogLevel": {
      "Default": "Information",
      "Microsoft.AspNetCore": "Warning"
    }
  },
  "AllowedHosts": "*",
  "Microfrontends": {
    "CacheDir": ".cache",
    "DiscoveryInfoUrl": "https://feed.piral.cloud/api/v1/microfrontends/myfeed",
    "DiscoveryUpdateUrl": "wss://feed.piral.cloud/api/v1/pilet/myfeed",
    "NugetFeeds": {
      "Source": {
        "Url": "https://feed.piral.cloud/api/v1/nuget/myfeed/index.json"
      },
      "Public": {
        "Url": "https://api.nuget.org/v3/index.json"
      },
      "GitHub": {
        "Url": "https://nuget.pkg.github.com/MyUserName/index.json",
        "User": "",
        "Token": ""
      },
      "Telerik": {
        "Url": "https://nuget.telerik.com/v3/index.json",
        "User": "",
        "Token": ""
      }
    }
  }
}

As you can see the User and Token fields, which are usually required for authenticating against a private feed, are left empty. This is not a mistake, but actually a best practice. You can use the .NET secret manager to then fill these parts. More details can be found in the Microsoft documentation.

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 was computed.  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

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.5.0-preview.9323268279 86 5/31/2024
0.5.0-preview.9024802187 64 5/9/2024
0.5.0-preview.8970923590 77 5/6/2024
0.5.0-preview.8961943566 55 5/5/2024
0.5.0-preview.8937540881 35 5/3/2024
0.5.0-preview.8924267614 40 5/2/2024
0.5.0-preview.8924038944 35 5/2/2024
0.5.0-preview.8919570786 47 5/2/2024
0.5.0-preview.8916013860 55 5/1/2024
0.5.0-preview.8870989656 59 4/28/2024
0.5.0-preview.8846899499 74 4/26/2024
0.5.0-preview.8831737080 70 4/25/2024
0.5.0-preview.8817031997 68 4/24/2024
0.5.0-preview.8785877670 69 4/22/2024
0.5.0-preview.8768228498 71 4/20/2024
0.5.0-preview.8766464948 69 4/20/2024
0.5.0-preview.8552466834 75 4/4/2024
0.5.0-preview.8538723932 203 4/3/2024
0.5.0-preview.8538694667 58 4/3/2024
0.5.0-preview.8489808898 71 3/30/2024
0.5.0-preview.8378016864 57 3/21/2024
0.5.0-preview.12163386433 48 12/4/2024
0.5.0-preview.12163052794 46 12/4/2024
0.5.0-preview.10938254736 65 9/19/2024
0.5.0-preview.10937840879 56 9/19/2024
0.5.0-preview.10937538276 58 9/19/2024
0.5.0-preview.10903389206 76 9/17/2024
0.5.0-preview.10301764169 73 8/8/2024
0.4.1 410 2/16/2024
0.4.1-preview.7933391150 79 2/16/2024
0.4.1-preview.7924227833 70 2/16/2024
0.4.1-preview.7923896542 71 2/16/2024
0.4.1-preview.7922609748 66 2/15/2024
0.4.1-preview.7922124111 68 2/15/2024
0.4.1-preview.7921989076 69 2/15/2024
0.4.1-preview.7917520828 72 2/15/2024
0.4.0 252 2/13/2024
0.4.0-preview.7894041735 76 2/13/2024
0.4.0-preview.7889205161 67 2/13/2024
0.4.0-preview.7887825195 72 2/13/2024
0.4.0-preview.7797649507 80 2/6/2024
0.4.0-preview.7797573922 70 2/6/2024
0.4.0-preview.7738700089 75 2/1/2024
0.4.0-preview.7733951421 70 1/31/2024
0.4.0-preview.7647762968 77 1/24/2024
0.4.0-preview.7637863202 63 1/24/2024
0.4.0-preview.7633843794 62 1/24/2024
0.4.0-preview.7633029380 63 1/23/2024
0.4.0-preview.7604871059 71 1/22/2024
0.4.0-preview.7590591848 71 1/20/2024
0.4.0-preview.7583858528 59 1/19/2024
0.4.0-preview.7582739690 63 1/19/2024
0.4.0-preview.7582261330 63 1/19/2024
0.3.0 535 11/15/2023
0.3.0-preview.7581632115 66 1/19/2024
0.3.0-preview.7534719969 66 1/15/2024
0.3.0-preview.7531251966 61 1/15/2024
0.3.0-preview.7531091190 71 1/15/2024
0.3.0-preview.6878318930 69 11/15/2023
0.3.0-preview.6863550581 73 11/14/2023
0.3.0-preview.6862085801 77 11/14/2023
0.3.0-preview.6861409332 75 11/14/2023
0.3.0-preview.6856367379 76 11/13/2023
0.3.0-preview.6818261260 80 11/9/2023
0.3.0-preview.6811974782 78 11/9/2023
0.3.0-preview.6810157968 74 11/9/2023
0.3.0-preview.6796543211 74 11/8/2023
0.3.0-preview.6773636635 76 11/6/2023
0.2.1 409 10/19/2023
0.2.1-preview.6575896737 75 10/19/2023
0.2.1-preview.6573766486 75 10/19/2023
0.2.1-preview.6564229721 83 10/18/2023
0.2.0 400 10/16/2023
0.2.0-preview.6534500637 78 10/16/2023
0.1.0 449 9/19/2023