Running .NET interactive in only client side browser
Is it possible an to run .net interactive in only client-side browser mode similar to how blazor client side works without running localhost or hosting on the server?
Found something similar to python that runs on web assembly https://blog.jupyter.org/jupyterlite-jupyter-%EF%B8%8F-webassembly-%EF%B8%8F-python-f6e2e41ab3fa
This isn't currently supported, but we're interested in learning more about your scenario, including the languages you'd like to use.
Hi, here's my use case: As a software engineer I want to run the .net Jupiter notebooks on the browser so I can host the code on CDN.
I'm interested in this as well. I'd like my users to be able to compile and run code locally that will send and receive messages with the server. I'm primarily interested in F#, but C# and SQL could also be valuable. Today I am trying the following on the client-side but never seem to get a response:
new FSharpKernel())
.UseDefaultFormatting()
.UseKernelHelpers()
.SendAsync (SubmitCode ("System.Console.WriteLine \"Hello World!\""))