Is it possible in a blazor wasm webapp, that two clients communicate with each-other (e.g. via sockets)?
With desktop apps this obviously was possible. Now with WebAssembly, web-apps can run offline. And I wonder, would it be possible to "install" the WASM app as an app offline, then disconnect from the internet, connect to a local network, and share updates with another wasm client? (e.g. by using a broadcast for discovery etc.? Perhaps by using Http and exposing a webapi within the webassembly app?).