Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kenotron/functional-reactive-flux
A TodoMVC app using the Functional Reactive Flux concept
https://github.com/kenotron/functional-reactive-flux
Last synced: 10 days ago
JSON representation
A TodoMVC app using the Functional Reactive Flux concept
- Host: GitHub
- URL: https://github.com/kenotron/functional-reactive-flux
- Owner: kenotron
- Created: 2016-02-24T23:24:46.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-03-09T17:57:40.000Z (almost 9 years ago)
- Last Synced: 2024-11-07T21:11:48.582Z (2 months ago)
- Language: TypeScript
- Homepage: https://medium.com/@kenneth_chau/the-2-fundamental-laws-of-flux-and-the-functional-reactive-flux-c9368ac008d3
- Size: 40 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# functional-reactive-flux
A TodoMVC app using the Functional Reactive Flux conceptSee my [Medium post](https://medium.com/@kenneth_chau/the-2-fundamental-laws-of-flux-and-the-functional-reactive-flux-c9368ac008d3)
about how to satisfy the 2 fundmental laws of Flux with the Functional Reactive Flux. The implementation here uses the mobx library
for data flow.# Getting Started
Clone this repository and run npm install:```
git clone https://github.com/kenotron/functional-reactive-flux.git
npm i
```Then, run the Webpack dev server with a npm start script:
```
npm start
```Now, simply open your browser to:
```
http://localhost:8080
```