# redux-ephemeral

> Pattern for managing transient local state in redux

Latest version **0.3.9** (published 2016-10-26) · MIT license · 0 weekly downloads

## Install

```sh
npm install redux-ephemeral
pnpm add redux-ephemeral
yarn add redux-ephemeral
bun add redux-ephemeral
```

## 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.3.9 |
| Published | 2016-10-26 |
| First published | 2015-09-16 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 26 |
| Maintainers | ashaffer88 |

## Links

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

## Dependencies (1)

- [mini-hamt](https://npm.io/package/mini-hamt.md) ^1.0.1

## Recent versions

- 0.3.9 (latest) — 2016-10-26
- 0.3.8 — 2016-10-26
- 0.3.7 — 2016-05-18
- 0.3.6 — 2016-05-17
- 0.3.5 — 2016-04-05
- 0.3.4 — 2016-01-29
- 0.3.3 — 2016-01-29
- 0.3.1 — 2016-01-28
- 0.3.0 — 2016-01-28
- 0.2.0 — 2016-01-09
- 0.1.9 — 2015-12-16
- 0.1.8 — 2015-12-14
- 0.1.7 — 2015-12-06
- 0.1.6 — 2015-12-06
- 0.1.5 — 2015-12-06
- … 5 more at https://npm.io/package/redux-ephemeral/versions

## README

# redux-ephemeral

[![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat)](https://github.com/feross/standard)

Library for managing transient local state in redux. Uses a [hash array mapped trie](https://github.com/ashaffer/mini-hamt) internally, so it is extremely performant by default, but you still deal only with plain JS objects, and your redux state atom is still serializable in the same way.

## Installation

    $ npm install redux-ephemeral

## Setup

Wrap your root reducer with redux-ephemeral, like so:

```javascript
import ephemeral from 'redux-ephemeral'

function reducer (state, action) {
  // your app's reducer logic
}

export default ephemeral('ui', reducer)
```

The `'ui'` argument specifies where in your state to mount your ephemeral state. So, in the example above, all transient/local state will be mounted under `state.ui`.

## Usage

redux-ephemeral exports three action creators:

  * `createEphemeral(key, state)` - Initialize the ephemeral state at path `key` to `state`
  * `toEphemeral(key, reducer, action)` - Direct an ephemeral action to the path specified by `key`, and reducer it with `reducer` when it gets there
  * `destroyEphemeral(key)` - Destroy the chunk of ephemeral state specified by `key`

This library can be used directly in components, but it is intended to be a low-level library that is consumed by a higher-level local state abstraction.  Check out [virtex-local](https://github.com/ashaffer/virtex-local) for such an example.

It also exports two helper functions:

  * `lookup(state, key)` - Takes the state map and returns the value for the local state at `key`.
  * `isEphemeral(action)` - Check whether or not an action is an ephemeral action.

## License

The MIT License

Copyright &copy; 2015, Weo.io &lt;info@weo.io&gt;

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

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