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

fredux

v2.0.1

Published

Fabulous Redux

Downloads

93

Readme

Fredux

Description

Redux is a very simple framework that helps you build javascript applications. Sometimes this simplicity could cause problems because of:

  • The amount of boilerplate that we have to code
  • The lack of tools to:
    • Create actions which follows some standard structure
    • Create asynchronous actions
    • Handle pending promise actions when the context of the application changes like in a page navigation.

Fredux is a utility library to make the development process of redux applications faster and easier. Fredux provides some conventions and tools to solve the above-mentioned problems.

Features

  • Support for FSA action definition and creation.
  • Support for promise action handling through a middleware.
  • Support for state versioning to handle context changes.

Install

npm install fredux

Setting up fredux promise action middleware

Add the promiseActionMiddleware to the store

import { promiseActionMiddleware } from "fredux";

const store = createStore(reducer, applyMiddleware(promiseActionMiddleware));

Fredux versioned promise action middleware

Use the fredux versioned promise action middleware if you want to handle context changes, for example a navigation to another page.

When an action involves a context change, the middleware cancels all pending promise actions which have been dispatched in previous versions.

Be aware that this middleware takes the version selector as the first parameter to allow the version reducer to be anywhare in the reducer tree.

import { versionedPromiseActionMiddleware } from "fredux";

const selector = state => state.version;
const store = createStore(reducer, applyMiddleware(
  versionedPromiseActionMiddleware(selector), versionMiddleware));

Combine the reducer

import { version } from "fredux";

const reducer = combineReducers({ version, otherStuff });

Usage

Using the fredux action decorators

Promise actions

import { PROMISE_CALL } from "fredux";

export const getMessage(id) {
  return {
      [PROMISE_CALL]: () => yourApiCall(id),
      type: "MESSAGE"
  };
}

Both middlewares will:

  1. Make the request and dispatch a MESSAGE_REQUEST action.
  2. If the request succeeds, the promise middleware will dispatch a MESSAGE_SUCCESS action with the response in the payload.
  3. If the request fails, the promise middleware will dispatch a MESSAGE_FAILURE with the error as its payload.

Using fredux with normalizr

import { PROMISE_CALL } from "fredux";

export const getMessage(id) {

  return {
      [PROMISE_CALL]: () => yourApiCall(id).then(r => normalize(r, schema)),
      type: "MESSAGE"
  };
}

Utils

isFreduxAction

Checks if the given action is a fredux action

  import { isFreduxAction } from "fredux";

  isFreduxAction(action);

Changelog

2.0.1 (9/10/2018)

  • Bugfix: versionedPromiseActionMiddleware was not returning the next() result when processing normal actions (PR #5).

2.0.0 (19/05/2017)

  • versionMiddleware has been deprecated. Now you either use the promiseActionMiddleware or the versionedPromiseActionMiddleware

1.1.0 (20/10/2016)

  • Added freduxAction flag to actions which have been dispatched by fredux middleware.
  • Added isFreduxAction function that checks if an action is a fredux action based on the freduxAction flag.

1.0.0 (10/10/2016)

  • Initial release