-
I'm looking to move some repos to use "modern" FSharp.Formatting, which I assume means v3.0. However I can't find even the most basic getting started docs - the doc site still says
> Assuming you a…
dsyme updated
4 years ago
-
The [SAFE page says](https://safe-stack.github.io/docs/overview/)
> it is entirely possible to write applications solely in Giraffe.
But [your page says](https://github.com/giraffe-fsharp/Giraffe…
-
In elm a command is a ["managed effect"](http://package.elm-lang.org/packages/elm-lang/core/5.1.1/Platform-Cmd) which means that a command contains information for the runtime to perform the side effe…
-
Is a clean way to do throttling in Elmish?
My definition of throttling comes from [this SO answer](https://stackoverflow.com/questions/25991367/difference-between-throttling-and-debouncing-a-functi…
-
It's really great to have the advanced (compat, fable packages, bindings, etc.) sections in the book, however I'm wondering if it'd be better to place them a bit further in the book - a beginner reade…
-
In #130 while discussing a different issue, @et1975 [said](https://github.com/elmish/elmish/issues/130#issuecomment-360817750)
> As long as we are making breaking changes, how does everybody feel abo…
-
Now that WebAssembly is out of preview (https://lists.w3.org/Archives/Public/public-webassembly/2017Feb/0002.html), is this something you consider as an alternative output?
Personally, I think it…
-
Each subscription in a command is executed [via](https://github.com/elmish/elmish/blob/master/src/cmd.fs#L25-L26)
```
let internal exec (dispatch:Dispatch) =
cmd |> List.iter (fun sub -> sub di…
-
`femto validate` seems to looks for a `package.json` while it's not needed and this also result in a different output between a repo with or without `package.json` .
**With package.json**
```
➜…
-
As I write my first Elmish program, I am annoyed at how much more difficult it is to compose the more complicated `update` function--the variant that ultimately returns a pair of type `'model * Cmd { …