https://github.com/junkdog/kotux
minimalist and modular redux-like predictive state container for kotlin
https://github.com/junkdog/kotux
kotlin
Last synced: about 2 months ago
JSON representation
minimalist and modular redux-like predictive state container for kotlin
- Host: GitHub
- URL: https://github.com/junkdog/kotux
- Owner: junkdog
- License: apache-2.0
- Created: 2016-11-18T23:51:42.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-03-05T22:47:30.000Z (over 8 years ago)
- Last Synced: 2025-01-01T23:40:13.671Z (over 1 year ago)
- Topics: kotlin
- Language: Kotlin
- Homepage:
- Size: 13.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
## kotux
A minimalist and modular redux-like predictive state container for kotlin
(note to self: at least put something basic here... to anyone reading - sorry)
## Gettings started
#### Initialize the store
```kotlin
val store = Kotux(
initial = MyApplicationState(),
reducer = myReducer,
middleware = listOf(
logger, download, persistence, appState))
```
## Design
### Middleware
### Actions
### Reducers
### Middleware