Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/elmish/react
Elmish React extensions for writing SPA and Native apps
https://github.com/elmish/react
react react-native
Last synced: about 20 hours ago
JSON representation
Elmish React extensions for writing SPA and Native apps
- Host: GitHub
- URL: https://github.com/elmish/react
- Owner: elmish
- License: other
- Created: 2017-04-15T17:48:47.000Z (over 7 years ago)
- Default Branch: v4.x
- Last Pushed: 2024-10-19T10:30:44.000Z (25 days ago)
- Last Synced: 2024-11-05T19:48:38.904Z (8 days ago)
- Topics: react, react-native
- Language: F#
- Homepage: https://elmish.github.io/react
- Size: 4.57 MB
- Stars: 104
- Watchers: 13
- Forks: 21
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
Elmish-React: React extensions for [elmish](https://github.com/elmish/elmish) applications.
=======
[![Windows Build](https://ci.appveyor.com/api/projects/status/vg3200aksdbvx5me/branch/v4.x?svg=true)](https://ci.appveyor.com/project/et1975/react/branch/v4.x) [![NuGet version](https://badge.fury.io/nu/Fable.Elmish.React.svg)](https://badge.fury.io/nu/Fable.Elmish.React)React and ReactNative support for Elmish apps.
For more information see [the docs](https://elmish.github.io/react).
## Installation
The easiest way to start with Elmish and React is to use the [template](https://github.com/elmish/templates):```shell
dotnet new -i "Fable.Template.Elmish.React::*"
dotnet new fable-elmish-react -n MyProject
```Alternatively, you can just add it to an existing project via paket:
```shell
paket add nuget Fable.Elmish.React
```As with any JS dependency, if you are authoring an application (as opposed to a library), you'll also need to install React (separately, via `npm` or `yarn`):
```shell
yarn add react react-dom
```