# redux-map-actions

> A simple namespacing library for mapping actions

Latest version **1.0.0** (published 2017-03-28) · ISC license · 0 weekly downloads

## Install

```sh
npm install redux-map-actions
pnpm add redux-map-actions
yarn add redux-map-actions
bun add redux-map-actions
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2017-03-28 |
| First published | 2017-03-28 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Richard Hoffman |
| Maintainers | coverslide |

## Links

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

## Recent versions

- 1.0.0 (latest) — 2017-03-28

## README

Redux-map-actions
====================

Simple action namespacer for redux actions.

Installation
------------

```
npm install redux-map-actions
```

Usage
-----

```
import { mapActions } from 'redux-map-actions';

const actionTypes = mapActions([
  'LOAD_USERS',
  'LOGIN_USER',
  'UPDATE_USER'
], 'USERS');

// the value of actionTypes will be
{
  LOAD_USERS: "USERS/LOAD_USERS",
  LOGIN_USER: "USERS/LOGIN_USER",
  UPDATE_USER: "USERS/UPDATE_USER",
}
```

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