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 🙏

© 2026 – Pkg Stats / Ryan Hefner

action-matchers

v0.0.2

Published

A function that accepts a matcher(s) and tells if Redux action matches those

Readme

Redux Action Matchers

What it is?

It's a set of functions that allows easier work in reducers and middleware when matching multiple actions at once not only by threir type property but also by their content.

Installation

npm install action-matchers

Example usage

createReducer()

import { createReducer } from "action-matchers";

type State = {
  temperature: string;
  count: number;
  numberOfCalls: number;
  numberOfCallsWithSecretString: number;
};

const initialState: State = {
  temperature: "0C",
  count: 0,
  numberOfCalls: 0,
  numberOfCallsWithSecretString: 0,
};

function increaseCount(count: number) {
  return {
    type: "increaseCount",
    payload: count,
  };
}

function setTemperature(temperature: string) {
  return {
    type: "setTemperature",
    payload: temperature,
  };
}

function ping() {
  return {
    type: "ping",
    meta: "secret string",
  };
}

function signSecretly() {
  return {
    type: "sign_SECRET",
  };
}

type IncreaseCount = ReturnType<typeof increaseCount>;
type SetTemperature = ReturnType<typeof setTemperature>;

const metricsReducer = createReducer<State>(
  [
    [
      "increaseCount",
      (state, action: IncreaseCount) => ({
        ...state,
        count: state.count + action.payload,
      }),
    ],
    [
      "setTemperature",
      (state, action: SetTemperature) => ({
        ...state,
        temperature: action.payload,
      }),
    ],
    [
      "increaseCount",
      "setTemperature",
      "ping",
      (state, action) => ({
        ...state,
        numberOfCalls: state.numberOfCalls + 1,
      }),
    ],
    [
      (action: any) => action.meta === "secret string",
      /_SECRET$/,
      (state, action) => ({
        ...state,
        numberOfCallsWithSecretString:
          state.numberOfCallsWithSecretString + 1,
      }),
    ],
  ],
  initialState
);

let state = metricsReducer(undefined, setTemperature("3C")); 
// Returned:
// {
//   count: 0,
//   temperature: "3C", <--
//   numberOfCalls: 1, <--
//   numberOfCallsWithSecretString: 0
// }

state = metricsReducer(state, increaseCount(3));
// Returned
// {
//   count: 3, <--
//   temperature: "3C",
//   numberOfCalls: 2, <--
//   numberOfCallsWithSecretString: 0
// }

state = metricsReducer(state, ping());
// Returned
// {
//   count: 3,
//   temperature: "3C",
//   numberOfCalls: 3, <--
//   numberOfCallsWithSecretString: 1 <--
// }

state = metricsReducer(state, signSecretly());
// Returned
// {
//   count: 3,
//   temperature: "3C",
//   numberOfCalls: 3,
//   numberOfCallsWithSecretString: 2 <--
// }

TODO

  • More runtime type checking
  • Better documentation
  • Allow to skip action param in reducer

License

Apache License Version 2.0

Authors

  • Rytis Alekna