Socket
Socket
Sign inDemoInstall

redux-validate-fsa

Package Overview
Dependencies
6
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    redux-validate-fsa

Redux middleware that validates if an action is a Flux Standard Action (FSA)


Version published
Weekly downloads
219
decreased by-19.78%
Maintainers
1
Install size
44.1 kB
Created
Weekly downloads
 

Readme

Source

redux-validate-fsa

NPM

Build Status

Redux middleware that validates if an action is a Flux Standard Action (FSA).

Usage

const middleware = [reduxThunk]

// Only use in DEV mode
if (__DEV__) {
  const fsaMiddleware = require('redux-validate-fsa')(ignore /* optional */)
  middleware.push(fsaMiddleware)
}

The ignore argument specify actions that should be skipped from the FSA check. This is useful when dealing with non-compliant actions from third-party libraries.

  • If an array is given, it is the action types that should be skipped from the FSA check.
  • If a function is given, it must return true for actions that should be skipped from the FSA check.

For example, if you use redux-simple-router, you should ignore its update-path actions, which are not FSA compliant.

import {UPDATE_PATH} from 'redux-simple-router'
const fsaMiddleware = require('redux-validate-fsa')([UPDATE_PATH])

Notes:

  • This middleware is only useful in dev mode. Therefore, it should be conditionally imported.
  • If you use redux-thunk, make sure the thunk middleware is added before this middleware. Alternatively, you can use the ignore predicate to filter out actions that are thunks.

Test

npm install
npm test

Keywords

FAQs

Last updated on 24 Nov 2015

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc