npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

redeuceur

v0.1.6

Published

A utility for creating terse Redux reducers.

Downloads

10

Readme

redeuceur

Build Status Coverage Status

A utility for creating terse Redux reducers.

Install

$ npm install --save redeuceur

Usage

import redeuceur from 'redeuceur';

const initialState = {};

const handlers = [
  [
    // handle a single action type
    ActionTypes.CREATE_FOO,
    // return the next state
    (state, action) => action.foo,
  ],
  [
    // handle one of many action types
    [ ActionTypes.DELETE_FOO, ActionTypes.RESET_FOO, ],
    // return a static value
    {},
  ],
  [
    // handle an arbitrary condition
    (state, action) => action.type === ActionTypes.UPDATE_FOO && !state.isBar,
    // return a computed value
    (state, action) => Object.assign({}, state, action.foo),
  ],
];

const foo = redeuceur(initialState, ...handlers);

API

redeuceur(initialState, handler[,...])

Takes an initial state value and one or more handlers, and returns a Redux reducer.

initialState

Type: state

The reducer is initialized to the value of initialState.

handler

Type: Array

Every handler is a [condition, nextState] pair. A handler specifies when to change state (condition) and what change to make (nextState).

If no conditions are met, the reducer returns the last state. Thus, the default case is handled implicitly.

Handlers are evaluated in the order they are provided to redeuceur. The reducer returns the nextState value of the first match.

condition

Type: String, Array String, (state, action) -> Boolean

A string condition is met when the string strictly equals the action type.

An array condition is met when one string strictly equals the action type.

A function condition is met when condition(state, action) returns a truthy value.

nextState

Type: (state, action) -> state, state

If nextState is a function, the result of nextState(state, action) is returned as the next state. Otherwise, the value of nextState is returned.

License

MIT © Max Hallinan