An open API service indexing awesome lists of open source software.

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

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