A library for controlling app flows with ease


Keywords
functional, react, redux, redux-react, flux, state, async, async-component, async-rendering, state-management, store, component
License
MIT
Install
npm install flovv@2.1.13

Documentation

FLOVV

A library for controlling app flows with ease

Installation

NPM

npm i flovv --save

YARN

yarn add flovv

React Bindings

Redux Bindings

import { createController } from "flovv";
import { select, dispatch } from "flovv/redux";
import { createStore } from "redux";

const store = createStore((state = 0, { type }) => {
  if (type === "increment") return state + 1;
  return state;
});
function* Increment() {
  const count = yield select((state) => state);
  yield dispatch({ type: "increment" });
}

API References

Effects

Examples