https://github.com/ruffiano/electronjs-ipcdispatcher
IPC-Dispatcher for Electron.js
https://github.com/ruffiano/electronjs-ipcdispatcher
desktop-application electron framework nodejs
Last synced: about 2 months ago
JSON representation
IPC-Dispatcher for Electron.js
- Host: GitHub
- URL: https://github.com/ruffiano/electronjs-ipcdispatcher
- Owner: Ruffiano
- Created: 2020-07-28T06:30:37.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-07-28T07:40:56.000Z (almost 6 years ago)
- Last Synced: 2025-02-02T10:42:50.846Z (over 1 year ago)
- Topics: desktop-application, electron, framework, nodejs
- Language: JavaScript
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Electron IPC-Dispatcher
Using an IPC with an electron creates a couple of inconveniences. The processes (main and render) are completely isolated and the only way is interfacing with IPC. There are two different layers - the main process and the rendering process (s). There is always only one main process, which is the starting point of your Electron application and it can be any number of rendering processes that are responsible for rendering your application. Each rendering process isolated from each other. It might sounds like complicated, and number of source code lines.
Here is quite simpl way interfacing with inter-process communication (IPC).