Electron inherits its multi-process architecture from Chromium, which makes the framework architecturally very similar to a modern web browser. This guide will expand on the concepts applied in the tutorial.| www.electronjs.org
Context Isolation is a feature that ensures that both your preload scripts and Electron's internal logic run in a separate context to the website you load in a webContents. This is important for security purposes as it helps prevent the website from accessing Electron internals or the powerful APIs your preload script has access to.| www.electronjs.org
Create and control browser windows.| www.electronjs.org
A set of guidelines for building secure Electron apps| www.electronjs.org
Migrating Visual Studio Code to Electron process sandboxing| code.visualstudio.com
We’re going to build a Svelte store, written in Rust, and run it in an Electron app.| Dave Ceddia