Security News
The Risks of Misguided Research in Supply Chain Security
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
redux-action-translator
Advanced tools
Translate dispatched actions to other actions, for compatibility with reducers/middleware you don't control.
E.g. when an action should trigger a history change in redux-router
It's preferable to update your reducers/middleware to acknowledge the source action, but that's not always possible.
$ npm install redux-action-translator
Installing the middleware:
import translator from 'redux-action-translator'
import {createStore, applyMiddleware} from 'redux'
const translation = translator({})
applyMiddleware(translation)(createStore)
Translations match on action.type and expect a value of the type [Action] | (a: Action) => [Action]
E.g.
const evenAction = (n) => ({ type: "even", payload: a.payload })
const oddAction = (n) => ({ type: "odd", payload: n })
const translation = translator({
"login_complete": [replace("/")],
"registration_complete": [replace("/"), welcome()],
"number": a => a.payload % 2 ? [oddAction(a.payload)] : [evenAction(a.payload)],
});
applyMiddleware(translation)(createStore)
...
// dispatches registrationComplete, then replace("/), then welcome()
dispatch(registrationComplete())
// dispatches numberAction, then oddAction if it's odd, or evenAction if it's even
dispatch(numberAction(n))
FAQs
Translate dispatched actions to other actions
The npm package redux-action-translator receives a total of 0 weekly downloads. As such, redux-action-translator popularity was classified as not popular.
We found that redux-action-translator 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
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.