
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
node-persistent-redux
Advanced tools
Persistent redux store for node apps.
The goal of this library is to provide a very straighforward way to write a redux store to disk. This can be useful in case you want to store a configuration, like for example with electron.
# Add the lib to your project and you are good to go.
$ yarn add node-persistent-redux
# Not in a hurry? Use npm.
$ npm install --save node-persistent-redux
import createPersistence from 'node-persistent-redux';
// Create redux middleware by specifying a location.
// The data will be stored in a Json on the specified location.
// It will not remove data that is already stored, however it will
// override the 'state' value of the Json. If the file does not
// exists, it will be created.
const persistence = createPersistence('~/.app-name');
// Now add the persistence middleware to the store.
const store = createStore(reducer, applyMiddleware(persistence));
$ git clone https://github.com/Jense5/node-persistent-redux
$ cd node-persistent-redux
$ yarn install
$ yarn test
This project is licensed under the MIT License - see the license file for details.
FAQs
Persistent redux store for node apps
The npm package node-persistent-redux receives a total of 0 weekly downloads. As such, node-persistent-redux popularity was classified as not popular.
We found that node-persistent-redux 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
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.