Skip to content

isabella232/typescript-fsa-redux-middleware

 
 

Repository files navigation

TypeScript FSA Redux Middleware

Fluent syntax for defining typesafe Redux vanilla middlewares on top of typescript-fsa.

This library is inspired by typescript-fsa-reducers.

Introduction

The major usage of this library is as look like this:

import {middleware} from 'typescript-fsa-redux-middleware';

const middleware = middleware()
.case(fetchSomething.done, (api, next, action) => {
  // Do followup manipulation of the API access
})

.case(fetchSomething.failed, (api, next, action) => {
  // Do error handling
})

Sample Application

Let you check sample application on sample/ folder.

License

MIT

Copyright

Copyright (c) 2018-2019 Sony Corporation.

About

Fluent syntax for defining typesafe Redux vanilla middlewares on top of typescript-fsa.

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 98.6%
  • JavaScript 1.4%