redux-electron-store
redux-electron-store copied to clipboard
⎋ A redux store enhancer that allows automatic synchronization between electron processes
I have converted the project to typescript, to increase the maintainability with breaking changes in electron. And also to provide types for typescript projects. During this refactor, I have also...
Hi, I am getting an error: Uncaught TypeError: fs.existsSync is not a function This link: provides a workaround to the problem. To be entirely honest I don't really understand the...
When trying to use in electron 12 I get following error: ``` Uncaught TypeError: Cannot read property 'getCurrentWindow' of undefined ``` This is due to removal of `electron.remote`. > Deprecated...
Bumps [electron](https://github.com/electron/electron) from 4.2.12 to 9.1.0. Release notes Sourced from electron's releases. electron v9.1.0 Release Notes for v9.1.0 Features Added support for MessagePort in the main process. #24323 Added support...
In my application I have the ability to `reload()` an internal webview. When doing this the webcontents id changes (but the webcontents doesnt), so it ends up duplicating the client...
It would be cool if this worked: ``` bash npm install @types/redux-electron-store ```
In your README, you suggest following code. But when registering these renderers with the main process, you send the filter using IPC to the main process. The filter can also...
Bumps [eslint](https://github.com/eslint/eslint) from 1.10.3 to 6.6.0. Release notes *Sourced from [eslint's releases](https://github.com/eslint/eslint/releases).* > ## v6.6.0 > * [`39dfe08`](https://github.com/eslint/eslint/commit/39dfe0880fa934e287e8ea1f7b56d5cba8d43765) Update: false positives in function-call-argument-newline (fixes [#12123](https://github-redirect.dependabot.com/eslint/eslint/issues/12123)) ([#12280](https://github-redirect.dependabot.com/eslint/eslint/issues/12280)) (Scott O'Hara) > *...
After refreshing my primary `renderer` window I don't see actions across windows/the main process. A secondary issue I'm seeing is that before an initial refresh, actions are sent across with...
Hello, I have to implement a store shared between windows in electron but with the constraint to uncouple source files between renderers and main. Your library works fine with reducers...