WebWindowNetCore 9.6.6

dotnet add package WebWindowNetCore --version 9.6.6
NuGet\Install-Package WebWindowNetCore -Version 9.6.6
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="WebWindowNetCore" Version="9.6.6" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add WebWindowNetCore --version 9.6.6
#r "nuget: WebWindowNetCore, 9.6.6"
#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 WebWindowNetCore as a Cake Addin
#addin nuget:?package=WebWindowNetCore&version=9.6.6

// Install WebWindowNetCore as a Cake Tool
#tool nuget:?package=WebWindowNetCore&version=9.6.6

WebWindowNetCore

A Webview Application for Windows and Linux similar to Electron. It uses a functional builder pattern to set up the application. It has an integrted Asp.NET (Kestrel) server which can be used to host the app and to communicate between the C# application and the web app:

  • you can call via javascript fetch from the web app (json input and output)
  • The C# app can send SSE events to the web app

WebWindowNetCore is the base Nuget packege, you need one more Nuget packages for every to supporting Operating system:

Windows Linux
WebWindowNetCore.Window WebWindowNetCore.Linux

Functional builder setup in the C# application

There is a builder pattern to setup the application (WebView.Create):

WebView
    .Create()
    .InitialBounds(600, 800)
    .Title("WebView Test")
    .ResourceIcon("icon")
    .SaveBounds()
    .Url($"file://{Directory.GetCurrentDirectory()}/webroot/index.html")
#if DEBUG            
    .DebuggingEnabled()
#endif            
    .Build()
    .Run();    

Setup integrated kestrel server

The integrated Asp.NET kestrel server also uses a builder pattern (ConfigureHttp)

WebView
    .Create()
    .InitialBounds(600, 800)
    .Title("WebView Test")
    .ResourceIcon("icon")
    .SaveBounds()
    .ConfigureHttp(http => http
        .ResourceWebroot("webroot", "/web")
        .UseJsonPost<Cmd1Param, Cmd1Result>("request/cmd1", JsonRequest1)
        .UseJsonPost<Cmd2Param, Cmd2Result>("request/cmd2", JsonRequest2)
        .UseSse("sse/test", sseEventSource)
        .Build())
#if DEBUG            
    .DebuggingEnabled()
#endif            
    .Build()
    .Run("de.uriegel.Commander");    

The default (local) port is 20000. It can be adapted.

Serving web app files from resource

It is possible to serve the web app via the integrated kestrel server, when the web app files are included as C# resources. You have to specify the resource root, under which the resource files are saved.

Please refer to the sample App

How to setup .NET project:

<PropertyGroup>
    <IsWindows Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Windows)))' == 'true'">true</IsWindows> 
		<IsOSX Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::OSX)))' == 'true'">true</IsOSX> 
	<IsLinux Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Linux)))' == 'true'">true</IsLinux>    
</PropertyGroup>

<PropertyGroup Condition="'$(IsWindows)'=='true'">
    <OutputType>WinExe</OutputType>
    <TargetFramework>net6.0-windows</TargetFramework>
    <RuntimeIdentifier>win-x64</RuntimeIdentifier>
</PropertyGroup> 

<PropertyGroup Condition="'$(IsLinux)'=='true'">
    <OutputType>Exe</OutputType>
    <TargetFramework>net6.0</TargetFramework>
    <RuntimeIdentifier>linux-x64</RuntimeIdentifier>
</PropertyGroup>

<ItemGroup Condition="'$(IsWindows)'=='true'">
    <PackageReference Include="WebWindowNetCore.Windows" Version="*.*.*" />
</ItemGroup> 

<ItemGroup Condition="'$(IsLinux)'=='true'">
    <PackageReference Include="WebWindowNetCore.Linux" Version="*.*.*" />
</ItemGroup> 

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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on WebWindowNetCore:

Package Downloads
WebWindowNetCore.Linux

A C# Webview Application for Linux similar to Electron based on GTK WebKit

WebWindowNetCore.Windows

A C# Webview Application for Windows similar to Electron based on WebView2

WebWindowNetCore.Electron

Dependencies for Electron for package WebWindowNetCore. Please look there for further information.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
9.6.6 118 3/26/2024
9.6.5 118 3/10/2024
9.6.4 126 1/22/2024
9.6.3 84 1/20/2024
9.6.2 84 1/20/2024
9.6.1 95 1/13/2024
9.6.0 94 1/11/2024
9.5.0 98 1/7/2024
9.4.2 71 1/7/2024
9.4.1 112 12/26/2023
9.4.0 117 12/23/2023
9.3.0 156 12/22/2023
9.2.0 109 12/18/2023
9.1.1 83 12/15/2023
9.1.0 117 12/15/2023
9.0.0 104 12/14/2023
8.0.0 140 12/10/2023
7.2.0 136 11/29/2023
7.1.0 91 11/29/2023
7.0.0 146 11/20/2023
7.0.0-alpha 92 11/18/2023
6.9.2 121 11/18/2023
6.9.1 113 11/17/2023
6.9.0 99 11/17/2023
6.8.0 100 11/17/2023
6.7.0 104 11/17/2023
6.6.0 132 11/16/2023
6.5.4 129 11/16/2023
6.5.3 133 11/12/2023
6.5.2 126 11/12/2023
6.5.1 101 11/12/2023
6.5.0 114 11/11/2023
6.4.0 88 11/11/2023
6.3.0 132 10/30/2023
6.2.1 98 11/12/2023
6.2.0 140 10/29/2023
6.1.0 188 8/24/2023
6.0.0 164 8/10/2023
5.1.0 352 4/10/2023
5.0.0 215 4/8/2023
4.4.0 352 3/22/2023
4.3.3 258 3/21/2023
4.3.2 252 3/21/2023
4.3.1 268 3/19/2023
4.3.0 303 3/18/2023
4.2.0 300 3/13/2023
4.1.0 224 3/13/2023
4.0.0 295 3/12/2023
4.0.0-alpha.5 155 2/28/2022
4.0.0-alpha.4 127 2/27/2022
4.0.0-alpha.3 112 2/27/2022
4.0.0-alpha.2 116 2/27/2022
4.0.0-alpha.1 122 2/27/2022
3.2.1 562 4/9/2022
3.2.0 1,006 8/15/2020
3.1.3 485 8/8/2020
3.1.2 433 7/29/2020
3.1.1 421 7/29/2020
3.1.0 399 7/28/2020
3.0.2 526 5/3/2020
3.0.1 416 5/3/2020
3.0.0 411 5/3/2020
2.2.0 406 7/28/2020
2.1.3 447 5/2/2020
2.1.2 440 5/2/2020
2.1.1 599 3/4/2020
2.1.0 466 3/4/2020
2.0.0 985 2/29/2020
1.0.1 459 5/2/2020
1.0.0 472 2/23/2020
0.0.7 428 2/22/2020
0.0.6 404 2/22/2020
0.0.5 503 2/22/2020
0.0.4 523 2/22/2020
0.0.3 531 2/22/2020
0.0.2 508 2/21/2020
0.0.1 442 2/21/2020
0.0.1-alpha.14 83 3/12/2023
0.0.1-alpha.13 79 3/12/2023
0.0.1-alpha.12 82 3/12/2023
0.0.1-alpha.10 83 3/10/2023
0.0.1-alpha.9 81 3/10/2023
0.0.1-alpha.8 89 3/9/2023
0.0.1-alpha.7 88 3/3/2023
0.0.1-alpha.6 86 3/3/2023