Skip to content

Latest commit

 

History

History
43 lines (29 loc) · 1.09 KB

README.md

File metadata and controls

43 lines (29 loc) · 1.09 KB

redux-fetchy-middleware

Fetch-wrapping middleware for Redux

Build Status Coverage Status

redux-fetchy-middleware provides a Redux middleware that wraps the Fetch API (or polyfill), allowing a simple action dispatch to asynchronusly reqest data from an API, and automatically trigger the dispatch of success or failure actions based on the API response.

Installation

Installation using NPM

npm i --save redux-fetchy-middleware 

Or use Yarn

yarn add redux-fetchy-middleware

Usage

CommonJS

var reduxFetchy = require('redux-fetchy-middleware').default

ES modules

import ReducFetchy from 'redux-fetchy-middleware')

UMD

var ReduxFetchy = window.ReduxFetchy.default

Configuration

License

MIT