Skip to content
This repository was archived by the owner on Jun 4, 2023. It is now read-only.

Latest commit

 

History

History
35 lines (19 loc) · 952 Bytes

development.md

File metadata and controls

35 lines (19 loc) · 952 Bytes

Development

IPC

Now, the preferred way to communicate between processes is to use @wexond/rpc-electron package.

Example:

Handling the IPC message in the main process:

src/main/network/network-service-handler.ts

Sending the IPC message to the main process:

const { data } = await networkMainChannel.getInvoker().request('http://localhost');

Common RPC interface

src/common/rpc/network.ts

Remote module

As Electron will be deprecating the remote module, we are migrating to our RPC solution.

Node integration

We are going to turn off nodeIntegration, enable contextIsolation and sandbox in the UI webContents, therefore we prefer not having requires to node.js built-in modules in renderers.

Project structure

Common interfaces, constants etc. should land into the common directory.