![]() | |
![]() | |
Original author(s) | GitHub |
---|---|
Developer(s) | OpenJS Foundation |
Initial release | 15 July 2013[1] |
Preview release | 26.0.0-beta.3
/ July 6, 2023 |
Repository | |
Written in | C++, JavaScript, Objective-C++ and Objective-C |
Operating system | Linux, macOS and Windows |
Platform | IA-32, x86-64, ARM |
License | MIT License[2] |
Website | www |
Electron (formerly known as Atom Shell[3]) is a free and open-source software framework developed and maintained by OpenJS Foundation.[4] The framework is designed to create desktop applications using web technologies (mainly HTML, CSS and JavaScript, although other technologies such as front-end frameworks and Web Assembly are possible) that are rendered using a version of the Chromium browser engine and a back end using the Node.js runtime environment.[5] It also uses various APIs to enable functionality such as native integration with Node.js services and an inter-process communication module.
Electron was originally built for Atom[3] and is the main GUI framework behind several open-source projects including Atom, GitHub Desktop, Light Table,[6] Visual Studio Code, WordPress Desktop[7] and Eclipse Theia.[8]
Electron applications include a "main" process and several "renderer" processes. The main process runs the logic for the application (e. g. menus, shell commands, lifecycle events), and can then launch multiple renderer processes by instantiating an instance of the BrowserWindow
class, which loads a window that appears on the screen by rendering HTML and CSS.
Both the main and renderer processes can run with Node.js integration if the nodeIntegration
field in the main process is set to true
.
Most of Electron's APIs are written in C++ or Objective-C and are exposed directly to the application code through JavaScript bindings.[9]
In September 2021, Electron moved to an eight-week release cycle between major versions to match the release cycle of Chromium Extended Stable and to comply with a new requirement from the Microsoft Store that requires browser-based apps to be within two major versions of the latest release of the browser engine.[10]
Electron frequently releases new major versions along every other Chromium release.[11] The latest three stable version are supported by the Electron team.[11]
Release | Status | Release date | End of life date | Chromium version | Node.js version | Module version | N-API version | ICU version |
---|---|---|---|---|---|---|---|---|
v23.x.y | Alpha | 2022-11-30[12] | TBD | 110 | TBD | ? | ? | ? |
v22.x.y | Current | 2022-11-30[13] | TBD | 108 | 16.17 | ? | ? | ? |
v21.x.y | Active | 2022-09-26[14] | TBD | 106 | 16.16 | ? | ? | ? |
v20.x.y | Active | 2022-08-02[15] | TBD | 104 | 16.15 | ? | ? | ? |
v19.x.y | End-of-Life | 2022-05-24[16] | 2022-11-29[13] | 102 | 16.14 | 106 | ? | ? |
v18.x.y | End-of-Life | 2022-03-29[17] | 2022-09-26[14] | 100 | 16.13 | 103 | ? | ? |
v17.x.y | End-of-Life | 2022-02-01[18] | 2022-08-02 | 98 | 16.13 | 101 | ? | ? |
v16.x.y | End-of-Life | 2021-11-15[19] | 2022-05-24[16] | 96 | 16.9 | 99 | ? | ? |
v15.x.y | End-of-Life | 2021-09-21 | 2022-05-24[16] | 94 | 16.5 | 98 | ? | ? |
v14.x.y | End-of-Life | 2021-08-30 | 2022-03-29[17] | 92 | 14.17 | 89 | 8 | 69.1 |
v13.x.y | End-of-Life | 2021-05-25 | 2022-01-31[18] | 91 | 14.16 | 89 | 7 | 68.1 |
v12.0.x | End-of-Life | 2021-03-02 | 2021-11-15[19] | 89 | 14.16 | 87 | 7 | 68.1 |
v11.4.x | End-of-Life | 2020-11-16 | 2021-08-30 | 87 | 12.18 | 85 | 5 | 65.1 |
v10.4.x | End-of-Life | 2020-08-25 | 2021-05-25 | 85 | 12.16 | 82 | 5 | 65.1 |
v9.4.x | End-of-Life | 2020-05-18 | 2021-03-02 | 83 | 12.14 | 80 | 5 | 65.1 |
v8.3.x | End-of-Life | 2020-02-04 | 2020-11-16 | 80 | 12.13 | 76 | 5 | 65.1 |
v7.3.x | End-of-Life | 2019-10-22 | 2020-08-25 | 78 | 12.8 | 75 | 4 | 64.2 |
v6.1.x | End-of-Life | 2019-07-29 | 2020-05-18 | 76 | 12.4 | 73 | 4 | 64.2 |
v5.1.x | End-of-Life | 2019-04-24 | 2020-02-04 | 73 | 12.0 | 70 | 4 | 63.1 |
v4.2.x | End-of-Life | 2018-12-20 | 2019-10-22 | 69 | 10.11 | 69 | 3 | 62.2 |
v3.1.x | End-of-Life | 2018-09-18 | 2019-07-29 | 66 | 10.2 | 64 | 3 | ? |
v2.0.x | End-of-Life | 2018-05-01 | 2019-04-24 | 61 | 8.9 | 57 | ? | ? |
v1.8.x | End-of-Life | 2017-12-12 | 2018-12-20 | 59 | 8.2 | 57 | ? | ? |
Main article: List of software using Electron |
Desktop applications built with Electron include Atom,[20] balenaEtcher,[21] Eclipse Theia,[8] Microsoft Teams,[22] Slack[23] and Visual Studio Code.[24][25] Brave Browser was based on Electron before it was rewritten to use Chromium directly.[26]
The most common criticism of Electron is that it necessitates software bloat when used for simple programs.[27] As a result, Michael Larabel has referred to the framework as "notorious among most Linux desktop users for being resource heavy, not integrating well with most desktops, and generally being despised."[28] Meanwhile, Joey Sneddon states that this tradeoff is sensible as Electron greatly lowers the cost of developing and maintaining cross-platform software.[29]
Researchers have shown that Electron's large feature set can be hijacked by bad actors with write access to the source JavaScript files. This requires root access on *nix systems and isn't considered to be a vulnerability by the Electron developers.[30] Those who are concerned that Electron is not always based on the newest version of Chromium have recommended progressive web applications as an alternative.[31]