Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
@mattoakes/electron-redux
Advanced tools
Redux & Electron: Make sure all your stores are on the same page
🚧 THIS IS ALPHA version of the library - the API still might change 🚧
Electron-Redux is an Redux Store Enhancer that helps you loosely synchronize the redux stores in multiple electron processes.
When working with Electron, using Redux poses couple of problems, since main and renderer processes are isolated and IPC is a single way of communication between them. This library, enables you to register all your Redux stores in the main & renderer process, and enable cross-process action dispatching & loose store synchronization.
# with yarn
yarn add @mattoakes/electron-redux
# with npm
npm install @mattoakes/electron-redux
For more details, please see the Installation docs page.
electron-redux docs are located at electron-redux.js.org. You can find there:
If you have a setup without any enhancers, also including middleware, you can use the basic setup. For the basic setup, electron redux exposes a Redux StoreEnhancer. You simply add the enhancer to your createStore function to set it up.
// main.ts
import { stateSyncEnhancer } from 'electron-redux'
const store = createStore(reducer, stateSyncEnhancer())
// renderer.ts
import { stateSyncEnhancer } from 'electron-redux'
const store = createStore(reducer, stateSyncEnhancer())
This setup is required when you have other enhancers/middleware. This is especially the case for enhancers or middleware which dispatch actions, such as redux-saga and redux-observable
For this setup we will use the composeWithStateSync
function. This function is created to wrap around your enhancers, just like the compose function from redux. When using this, you will not need stateSyncEnhancer
as this does the same thing under the hood. If you do, it will throw an error.
import { createStore, applyMiddleware, compose } from 'redux'
import { composeWithStateSync } from 'electron-redux'
const middleware = applyMiddleware(...middleware)
// add other enhances here if you have any, works like `compose` from redux
const enhancer: StoreEnhancer = composeWithStateSync(middleware /* ... other enhancers ... */)
const store = createStore(reducer, enhancer)
That's it!
You are now ready to fire actions from any of your processes, and depending on the scope the main store will broadcast them across your application.
Please check out the docs for more recipes and examples!
Actions fired MUST be FSA-compliant, i.e. have a type
and payload
property. Any actions not passing this test will be ignored and simply passed through to the next middleware.
Nota bene,
redux-thunk
is not FSA-compliant out of the box, but can still produce compatible actions once the async action fires.
Furthermore, actions (and that includes payloads) MUST be serializable.
You can extend default JSON serialization used, by providing your own serialization/deserialization functions.
By default, all actions are broadcast to all registered stores. However, some state should only live in the renderer (e.g. isPanelOpen
). electron-redux introduces the concept of action scopes.
To stop an action from propagating from renderer to main store, simply set the scope to local by decorating your action with stopForwarding
function. Read more about it in the docs
By default, some of the actions are blocked from broadcasting / propagating, those include actions starting with @@
and redux-form
. The list of ignored actions can be modified with options.
This project adheres to Semantic Versioning. Every release, along with the migration instructions, is documented on the GitHub Releases page.
Contributions via issues or pull requests are hugely welcome! Remember to read our contributing guidelines to get started!
By contributing to electron-redux, you agree to abide by the code of conduct.
FAQs
Redux & Electron: Make sure all your stores are on the same page
The npm package @mattoakes/electron-redux receives a total of 0 weekly downloads. As such, @mattoakes/electron-redux popularity was classified as not popular.
We found that @mattoakes/electron-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
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.