We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 173996b commit c7d4d2dCopy full SHA for c7d4d2d
electron/best-practices.md
@@ -14,9 +14,9 @@ ipcRenderer.sendSync("event-key");
14
ipcMain.on("event-key", event => {});
15
```
16
17
-#### Subscribe main's process listeners as soon as it's ready
+#### Subscribe main's event listeners as soon as possible
18
19
-This way the channels are up and initial requests from renderer won't be absorbed.
+This way the messages won't get lost.
20
21
```js
22
app.on("ready", () => {
0 commit comments