Mumrich.SpaDevMiddleware 1.4.1-PullRequest0004.2

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

// Install Mumrich.SpaDevMiddleware as a Cake Tool
#tool nuget:?package=Mumrich.SpaDevMiddleware&version=1.4.1-PullRequest0004.2&prerelease

Mumrich.SpaDevMiddleware

A .NET Middleware for ASP.NET Core that automatically integrates (multiple) Single-Page-Apps in a .NET-Webhost.

  • Automatic node-package install (npm/yarn/pnpm)
  • SPAs are automatically built upon (dotnet publish triggers the build-script in package.json)
  • Automatic path-mapping for the SPA by aid of the superb YARP
  • SPA Hot-Reloading supported
  • Custom-ENV-Variables can be passed to the Node-Instance via appsettings.json
  • Usage of MSBUILD-Variables supported

Usage

  1. Install the Mumrich.SpaDevMiddleware Nuget-Package into your Web-Project.

  2. Modify the csproj-file by adding the following ItemGroup and adjust the values accordingly:

    <ItemGroup>
      <SpaRoot Include="MyApp\">
        <InstallCommand>npm install</InstallCommand>
        <BuildCommand>npm run build</BuildCommand>
        <BuildOutputPath>MyApp\dist\**</BuildOutputPath>
      </SpaRoot>
    </ItemGroup>
    
  3. Implement the ISpaDevServerSettings-interface:

    public class AppSettings : ISpaDevServerSettings
    {
      public Dictionary<string, SpaSettings> SinglePageApps { get; set; } = new();
      public string SpaRootPath { get; set; } = Directory.GetCurrentDirectory();
      public bool UseParentObserverServiceOnWindows { get; set; } = true;
    }
    
  4. Extend appsettings.json with a SPA-Config e.g.:

    {
      "Logging": {
        "LogLevel": {
          "Default": "Information",
          "Microsoft.AspNetCore": "Warning"
        }
      },
      "AllowedHosts": "*",
      "SinglePageApps": {
        "/": {
          "DevServerAddress": "http://localhost:3000/",
          "SpaRootPath": "app1",
          "NodePackageManager": "Npm",
        }
      }
    }
    
  5. Register Services and setup app e.g.:

    using Mumrich.SpaDevMiddleware.Extensions;
    
    var builder = WebApplication.CreateBuilder(args);
    var appSettings = builder.Configuration.Get<AppSettings>();
    
    builder.RegisterSinglePageAppDevMiddleware(appSettings);
    
    var app = builder.Build();
    
    app.MapSinglePageApps(appSettings);
    
    app.Run();
    
  6. When using hot-reloading, adapt your SPA-bundling-setup accordingly to accept the .NET-Webhost-Proxy on the correct Port. Custom-ENV-Variables can be passed via appsettings.json e.g for vite.config.ts:

    // https://vitejs.dev/config/
    export default defineConfig({
      plugins: [vue()],
      server: {
        host: true,
        port: 3000,
        strictPort: true,
      },
    });
    
  7. Run the app (dotnet run), navigate to the .NET-Web-host-Url and enjoy 👌!

Troubleshooting

  • See the working Example in the WebSpaVue-folder.

Credits

Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  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. 
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
1.4.1 39 5/1/2024
1.4.1-PullRequest0004.4 33 4/30/2024
1.4.1-PullRequest0004.3 40 4/30/2024
1.4.1-PullRequest0004.2 42 4/19/2024
1.4.0 370 12/12/2023
1.4.0-PullRequest0003.11 58 12/12/2023
1.4.0-PullRequest0003.10 52 12/12/2023
1.4.0-PullRequest0003.9 50 12/12/2023
1.4.0-PullRequest0003.8 57 12/12/2023
1.3.5 558 8/23/2023
1.3.5-PullRequest0002.1 59 8/23/2023
1.3.4 113 8/23/2023
1.3.3 189 3/24/2023
1.3.2 224 3/24/2023
1.3.1 180 3/24/2023
1.3.0-alpha.10 99 9/1/2022
1.3.0-alpha.6 93 9/1/2022
1.3.0-alpha.5 88 9/1/2022
1.2.1 280 1/12/2023
1.2.1-PullRequest0012.21 94 1/12/2023
1.2.0 1,802 10/5/2022
1.2.0-PullRequest0010.13 74 10/5/2022
1.2.0-PullRequest0009.13 74 10/5/2022
1.2.0-PullRequest0009.2 76 10/5/2022
1.1.2 427 9/28/2022
1.1.2-PullRequest0008.6 113 9/28/2022
1.1.2-PullRequest0008.5 104 9/28/2022
1.1.1 423 9/28/2022
1.1.0 425 9/28/2022
1.1.0-PullRequest0007.8 136 9/28/2022
1.0.5-PullRequest0007.7 147 9/28/2022
1.0.5-PullRequest0007.6 146 9/28/2022
1.0.5-PullRequest0006.1 94 7/14/2022
1.0.4 423 7/14/2022
1.0.4-PullRequest0006.3 96 7/14/2022
1.0.4-PullRequest0005.1 116 5/6/2022
1.0.3 418 5/6/2022
1.0.2 485 4/19/2022
1.0.0 405 4/19/2022
0.1.62 417 4/19/2022
0.1.62-PullRequest0004.3 106 4/19/2022
0.1.61 392 4/10/2022
0.1.60 396 4/10/2022
0.1.59 407 3/2/2022
0.1.54 413 3/1/2022
0.1.53 406 3/1/2022
0.1.52 404 3/1/2022
0.1.51 407 3/1/2022
0.1.50 408 3/1/2022
0.1.49 398 3/1/2022
0.1.48 407 3/1/2022
0.1.48-PullRequest0003.8 109 3/1/2022
0.1.47 428 2/24/2022
0.1.47-PullRequest0002.6 122 2/24/2022
0.1.46 411 2/23/2022
0.1.40-experimental.27 128 2/23/2022