New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

create-reducer-map

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

create-reducer-map

A tiny utility to create reducer maps for Redux.

  • 0.2.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

create-reducer-map

A tiny utility to create reducer maps for Redux that follows the priciples of Flux Standard Action (FSA) and will enable you to handle errors as a first class concept. No need to define separate action types like SOME_ACTION_SUCCESS and SOME_ACTION_ERROR, but instead use FSA actions to represent errors is a simple and straightforward manner.

Example

import createReducer from 'create-reducer-map';
import { SOME_ACTION, ANOTHER_ACTION } from 'path/to/actionHandlers';

const initialState = {};

export default createReducer(initialState, {
  [SOME_ACTION]: {
    // Handles a basic FSA action.
    next: (state, payload, meta) => state,
    // Handles an FSA action that represents an error.
    throw: (state, payload, meta) => state,
  },
  // Handles any FSA action.
  [ANOTHER_ACTION]: (state, payload, meta) => state
});

// Basic FSA action
{
  type: SOME_ACTION,
  payload: {
    text: 'Do something...'
  }
  meta: {
    optional: 'Something else...'
  }
}

// FSA action representing an error
{
  type: SOME_ACTION,
  payload: new Error(),
  error: true
}

Keywords

FAQs

Package last updated on 28 Feb 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc