You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Has anyone looked into trying to compile the C# to WASM? This library appears to be well ahead of any non-GPL library in JS, and I'd love to be able to bind it in to some heavy JS geometry work I'm doing. Not sure of the current state of the C#-to-WebAssembly ecosystem though...
The text was updated successfully, but these errors were encountered:
Only the runtime is compiled to wasm
Mono has a wasm version of the runtime, this is used by Blazor (a SPA framework): https://dotnet.microsoft.com/apps/aspnet/web-apps/blazor
You can then run .NET dlls directly in the browser, they don't need to be compiled/transpiled.
The main issue is performance, you are basically running a virtual machine (.NET) on top of a virtual machine (the javascript vm).
Has anyone looked into trying to compile the C# to WASM? This library appears to be well ahead of any non-GPL library in JS, and I'd love to be able to bind it in to some heavy JS geometry work I'm doing. Not sure of the current state of the C#-to-WebAssembly ecosystem though...
The text was updated successfully, but these errors were encountered: