Skip to content

Latest commit

 

History

69 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WebWindow

A WebkitGtk Window for building native AoT desktop applications on Linux using web technologies, C#, and .NET

Why?

.NET Maui is not completely multi-platform; it doesn't support Linux. Therefore, there is no Microsoft supported way to create desktop applications in C# and .NET using web technologies.

I created a WebKit-based Blazor WebView that can be used to create Blazor Hybrid applications on Linux, but on low-spec ARM devices the startup time can be rather poor. This could be fixed with native AoT, but native AoT currently generates unusable code for anything with Razor components (including Blazor) causing the application to either segfault or otherwise not function properly.

This solution does not use Razor commponents. Instead it simply exposes the WebKitGTK WebView's DOM with Javascript interop so DOM manipulation can be done in C#. Because there are no Razor components, this solution can be compiled with native AoT for fast start times while still providing convenient DOM manipulation in C#.

Run the Demonstration

git clone https://github.com/JinShil/WebWindow.git
cd WebWindow/WebWindow.Test
dotnet run

Run the Demonstration with Native AoT

You may need to install these dependencies:

sudo apt-get install clang zlib1g-dev

Then publish the project with Native AoT.

cd WebWindow/WebWindow.Test
dotnet publish -r linux-x64 -c Release --self-contained=true -p:PublishAot=true -p:StripSymbols=true

If you get an error about not being able to find -lstdc++ try this and then run the publish command again.

sudo apt install libstdc++-12-dev

Then run the resulting executable:

./bin/Release/net8.0/linux-x64/publish/WebWindow.Test

About

A WebkitGtk Window for building desktop applications on Linux using web technologies and .NET

Resources

Stars

3 stars

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages