Skip to content

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

License

Notifications You must be signed in to change notification settings

sony/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

Stars

Watchers

Forks

Packages

No packages published