最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Emit custom events in electron app from main to renderer - Stack Overflow

programmeradmin1浏览0评论

So I know this works because I tried it, but it's not documented anywhere so I'm asking if it's OK to use this practice, and not worry that it would stop working in the future (Electron and nodejs are known to break things from one version to another)

This is the type of practice I'm talking about:

main.js

app.emit('did-something', param1, param2);

renderer.js (browser window)

const {app} = require('electron').remote;

app.on('did-something', (param1, param2) => {
  $('#whatever').text(param1);
});

Essentially I'm trying to move all the code that doesn't deal with HTML directly, like database interactions, into main.js and I want to make sure this is the right way to do it.

Also, is it ok if I extend the app object with my own methods and properties?

So I know this works because I tried it, but it's not documented anywhere so I'm asking if it's OK to use this practice, and not worry that it would stop working in the future (Electron and nodejs are known to break things from one version to another)

This is the type of practice I'm talking about:

main.js

app.emit('did-something', param1, param2);

renderer.js (browser window)

const {app} = require('electron').remote;

app.on('did-something', (param1, param2) => {
  $('#whatever').text(param1);
});

Essentially I'm trying to move all the code that doesn't deal with HTML directly, like database interactions, into main.js and I want to make sure this is the right way to do it.

Also, is it ok if I extend the app object with my own methods and properties?

Share Improve this question asked Jan 16, 2018 at 15:04 DawnDawn 3032 gold badges3 silver badges10 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 6

The main process should almost always only be used for creating BrowserWindows and for accessing electron APIs which are marked in the docs as only accessible via the main process.

Check out this article for more details of the differences between the main/renderer and what they are used for. The Chromium process architecture means that any blocking code in the main process will block the renderers too.

All your app code should be in render processes and if you're executing long-running blocking code this should run in Web Workers or another renderer process.

If you want to municate between the main and renderer processes you should use the documented API's.

发布评论

评论列表(0)

  1. 暂无评论