interactive icon indicating copy to clipboard operation
interactive copied to clipboard

Running .NET interactive in only client side browser

Open martasp opened this issue 3 years ago • 1 comments

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?

martasp avatar Aug 20 '22 07:08 martasp

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

martasp avatar Aug 21 '22 07:08 martasp

This isn't currently supported, but we're interested in learning more about your scenario, including the languages you'd like to use.

brettfo avatar Nov 08 '22 19:11 brettfo

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.

martasp avatar Nov 19 '22 15:11 martasp

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!\""))

harrisse avatar Mar 12 '23 06:03 harrisse