Tag: #electron
How does
require
work in Electron? require
in Electron works like Node.js, allowing you to load modules, but each Renderer process has its own isolated module state. Relative module resolution depends on whether you use loadFile
or loadURL
. 2020-10-15The Electron process architecture is the Chromium process architecture
An Electron instance is basically a Chromium instance. It just has some Node.js integration. 2020-10-14
All content copyright James Fisher.