Bolero icon indicating copy to clipboard operation
Bolero copied to clipboard

Bolero brings Blazor to F# developers with an easy to use Model-View-Update architecture, HTML combinators, hot reloaded templates, type-safe endpoints, advanced routing and remoting capabilities, and...

Results 86 Bolero issues
Sort by recently updated
recently updated
newest added

I was trying to refactor code. It is kind of way I like to arrange large application. Code is compiling but I am getting error on web assembly side. I...

The sample uses one model object, one message type and one update function. Even with the sample, simple as it is, it's easy to see how quickly this approach gets...

question

![to](https://user-images.githubusercontent.com/41160178/62424238-1086cf80-b69a-11e9-8938-f54b6f72421c.png)

bug

My Bolero 0.5 application - client with server - was very sluggish for perhaps 10 to 20 seconds after I started it in Debug in VS 2019. After that initial...

bug

Currently routing behaves strangely with anchor tags when the `` is present in the index.html `` If you go to a URL with a hash, ex: `/callback#43` you will automatically...

enhancement

Great library, thinking of using it for a new project!! One question though - the documentation contains only samples about Remoting, which states "Remote calls are POST requests to the...

question

I mean like from different routes on the same host

question

I think the next step should be to make WebAssembly run in a Web Worker and keep the front end with WebSharper.UI. That would allow the integration of .Net libraries...

discussion

With added logging in Bolero.Build/Task, this is the stack trace: ``` 3>C:\my\bolero\src\Bolero.Build\Bolero.Build.targets(13,5): error : FAILING HERE on C:\my\bolero\tests\Client\obj\Debug\netstandard2.0\blazor\linker\Bolero.dll: Mono.Cecil.AssemblyResolutionException: Failed to resolve assembly: 'mscorlib, Version=2.0.5.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e' 3>C:\my\bolero\src\Bolero.Build\Bolero.Build.targets(13,5): error :...

bug

Running this code makes it hang upon return: JSRuntime.Current.InvokeAsync( "alert", "Hello!") |> Async.AwaitTask |> Async.RunSynchronously But this works ok: JSRuntime.Current.InvokeAsync( "alert", "Hello!") |> Async.AwaitTask |> Async.Start