|
|
|
|
|
by yblu
3379 days ago
|
|
> The view process is very limited, just standard web APIs. Nitpicking here, but the view (rendering) process in Electron can actually use the Node API [1]. The difference in API access privilege between the two types of process is in what Electron API (not Node API) they can use. For example, main process can use native GUI API but renderers can't and must IPC to main if they need to, say, show a system dialog. [1] https://github.com/electron/electron/blob/master/docs/glossa... |
|