Release of Electron 7.0.0, platform for building applications based on the Chromium engine

Prepared platform release electron 7.0.0, which provides a self-contained framework for developing multi-platform user applications based on Chromium, V8 and Node.js components. Significant version number change due to upgrade to codebase Chromium 78, platforms Node.js 12.8 and JavaScript engine V8 7.8. Previously expected deprecation of support for 32-bit Linux systems has been postponed for the time being and the release
7.0 including available in 32-bit builds.

Among changes in Electron-specific APIs:

  • Added ipcRenderer.invoke() and ipcMain.handle() methods to organize request/response style asynchronous IPC that recommended use instead of the "remote" module;
  • Added the nativeTheme API to read and process changes to the system theme and color scheme;
  • Switched to a new definition generator for TypeScript;
  • Added support for Windows builds for 64-bit systems based on the ARM architecture.

Recall that Electron allows you to create any graphical applications using browser technologies, the logic of which is defined in JavaScript, HTML and CSS, and the functionality can be extended through the system of add-ons. Developers have access to Node.js modules, as well as an extended API for creating native dialogs, integrating applications, creating context menus, integrating with the notification display system, manipulating windows, and interacting with Chromium subsystems.

Unlike web applications, Electron-based programs are delivered as self-contained executables that are not tied to a browser. At the same time, the developer does not need to worry about porting the application for various platforms, Electron will provide the ability to build for all systems supported in Chromium. Electron also provides facilities to organize automatic delivery and installation of updates (updates can be delivered both from a separate server and directly from GitHub).

Of the programs built on the basis of the Electron platform, one can note the editor Atom, mail client nylas, a toolkit for working with Git GitKraken, a system for analyzing and visualizing SQL queries Car, WordPress Desktop blogging system, BitTorrent client WebTorrent Desktop, as well as official clients for services such as Skype, Signal, Slack, Basecamp, Twitch, Ghost, Wire, Wrike, Visual Studio Code and Discord. Total in the catalog of programs Electron is presented about 800 applications. To simplify the development of new applications, a set of standard demo applications, which includes code examples for solving various problems.

Source: opennet.ru

Add a comment