
Security News
CISA Kills Off RSS Feeds for KEVs and Cyber Alerts
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.
redux-validate-fsa
Advanced tools
Redux middleware that validates if an action is a Flux Standard Action (FSA)
Redux middleware that validates if an action is a Flux Standard Action (FSA).
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.
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:
ignore
predicate to filter out actions that are thunks.npm install
npm test
FAQs
Redux middleware that validates if an action is a Flux Standard Action (FSA)
We found that redux-validate-fsa demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.
Security News
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.