# @kogai/redux-util

> Utility tools for redux based project

Latest version **0.1.5** (published 2016-01-14) · MIT license · 0 weekly downloads

## Install

```sh
npm install @kogai/redux-util
pnpm add @kogai/redux-util
yarn add @kogai/redux-util
bun add @kogai/redux-util
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.5 |
| Published | 2016-01-14 |
| First published | 2016-01-14 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | kogai |
| Maintainers | kogai |
| Keywords | flux, redux |

## Links

- npm: https://www.npmjs.com/package/@kogai/redux-util
- Repository: https://github.com/kogai/redux-util
- Homepage: https://github.com/kogai/redux-util#readme
- Issues: https://github.com/kogai/redux-util/issues
- npm.io page: https://npm.io/package/@kogai/redux-util

## Alternatives

- [@reckona/mreact-store](https://npm.io/package/@reckona/mreact-store.md) — 976 weekly downloads
- [regular-state](https://npm.io/package/regular-state.md) — 410 weekly downloads
- [@pacote/flux-actions](https://npm.io/package/@pacote/flux-actions.md) — 65 weekly downloads
- [@pilotlab/lux-debug](https://npm.io/package/@pilotlab/lux-debug.md) — 39 weekly downloads
- [vue-persist-state](https://npm.io/package/vue-persist-state.md) — 19 weekly downloads

## Recent versions

- 0.1.5 (latest) — 2016-01-14
- 0.1.4 — 2016-01-14
- 0.1.3 — 2016-01-14

## README

# redux-util

Utility tools for redux based project.
It has purpose that do not rely on babel(or other transpiler).


## Usage

createAction

```js
// ActionCreator
const createAction = require('@kogai/redux-utils').createAction;
const sampleAction = createAction({ type: 'SAMPLE_ACTION' });

// Redux-Middleware
const actionVerification = require('@kogai/redux-utils').actionVerification;
const createStoreWithMiddleware = applyMiddleware(
  actionVerification
)(createStore);
```

---
_Source: https://npm.io/package/@kogai/redux-util · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
