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

redux-pure-fetch

v0.0.4

Published

A declarative Redux middleware to manage asynchronous service calls and side-effects, so the reduc action creator & reducer stay pure can stay pure and actions still serializable

Downloads

5

Readme

redux-pure-fetch

A declarative Redux middleware to manage asynchronous service calls and side-effects. Using browser fetch API internally but dispatch FSA actions, returns promises for optional promise orchestration

Design Goal

  1. promise unaware, (unless desired, which follows standard promise coordination pattern)
  2. declarative side effect
  3. stay within Redux action => reducer pattern
  4. manage side-effect as separate response handlers so client code stay functional
  5. service request and response fires 2 separate actions so redux ticks twice (vs. once in redux-thunk which makes replay harder?)
  6. testing concerns are addressed through dependency management (aiming for simple middleware swap or declarative response mocking)

Non-goal

  1. Abstract AJAX as a type of datasource, like local cache is not in scope. Rather, the library aims to allow easily wrapping to achieve that.
  2. Move application logic in middleware. Fetch clients's responsibility only extends to managing connections.
  3. Callback hell. Use more powerful libraries like Redux-epic solves that. Though this library intended to limit it's power to be more focused on asynchronous calls, it still returns a promise so regular promise orchestration would work and is up to the user. (Plus, callback is supposed to be less of a problem in Redux anyway.)

Design choices

  1. Not forcing dispatch on response: reducer can omit the dispatched undefined action
  2. Sequential AJAX calls are supported by dispatching new actions in success/error handler.
  3. Advanced promise coordination is not supported due to the declarative API design, until declarative coordination standard become available.
  4. Accept extended FSA actions (with all serializable information within standard fields), and dispatch FSA actions for upstream/downstream middleware processing).
  5. TODO: should work with FETCH or Service Worker API standard.

Inspired by

  1. Discussions with Luke
  2. https://goshakkk.name/redux-side-effect-approaches/
  3. https://medium.com/javascript-and-opinions/redux-side-effects-and-you-66f2e0842fc3
  4. http://blog.isquaredsoftware.com/2017/01/idiomatic-redux-thoughts-on-thunks-sagas-abstraction-and-reusability/
  5. Concluding thought, the best practise of using redux, is as if it doesn't exist... Redux is not to help app developing, it's more of an elegant log system.