- Notifications
You must be signed in to change notification settings - Fork85
Elm-like abstractions for F# apps
License
elmish/elmish
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Elmish implements core abstractions that can be used to build applications following the “model view update” style of architecture, as made famous by Elm.The library however does not model any "view" and is intended for use in conjuction with a DOM/renderer, like React/ReactNative or VirtualDOM.Those familiar with Redux may find Elmish a more natural fit when targeting React or ReactNative as it allows one to stay completely in idiomatic F#.
Elmish abstractions have been carefully designed to resemble Elm's "look and feel" and anyone familiar with post-Signal Elm terminology will find themselves right at home.
See thedocs site for more information.
v2.0 and above releases usedotnet
SDK and can be installed withdotnet nuget
orpaket
:
For use in a Fable project:paket add nuget Fable.Elmish -i
For use in a WebSharper project:paket add nuget WebSharper.Elmish -i
If targeting CLR, please use Elmish package:paket add nuget Elmish -i
For v1.x release information please see thev1.x branchFor v2.x release information please see thev2.x branchFor v3.x release information please see thev3.x branch
Elmish depends ondotnet SDK 6:
dotnet fsi build.fsx
or./build.fsx
on a *nix system.
Please have a look at theguidelines.
About
Elm-like abstractions for F# apps