Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
July 21, 2021 08:53 pm GMT

Advanced Electron.js architecture

Written by Alain Perkaz

A while back, I began working on a side project called taggr, a completely offline, interactive photo exploration app. Developing taggr required me to navigate up from the lowest level of app complexity, trying out multiple architectural approaches and exploring the limitations of each.

In this article, well discuss the trade-offs of different architectural approaches for building desktop applications with Electron. Well analyze the shortcomings of each and introduce an architecture that aims to tackle them.

The blueprint presented in this article is the outcome of an ongoing effort to find an approach that enables me, a solo developer, to manage the complexity of the app and meet performance requirements by leveraging standard web tooling. Lets dive in!

Note: You can follow along with this GitHub repository.

Introduction to Electron.js

In the last few years, JavaScript usage has dramatically increased within the browser realm, largely with the help of libraries and frameworks like React, Vue, and Angular. Similarly, weve seen JavaScript grow beyond the browser with Node.js, Deno, and React Native.

Electron.js is one of these frameworks. Since its release in 2013, Electron has grown to become one of the most-used frameworks for building cross-platform desktop applications. VS Code, Slack, Twitch, and many other popular desktop applications are built using Electron.

How Electron works

Electron embeds Chromium and Node.js in its binary, enabling web developers to write desktop applications without writing native code. Electron implements a multi-process model composed of the main and renderer processes, which is similar to the Chromium browser.

Each applications window is a render process, which isolates the code execution at window level. The main process is responsible for the application lifecycle management, window management or render process, and native APIs like system menus, notifications, and tray icons.

Each app is composed of one main process and a variable number of render processes. Render processes can be used for JavaScript code execution and can be hidden without a UI.

High Level Electron Arch Two Render Processes

Note: Electron is not the only option for building cross-platform desktop applications. Other alternatives offer less resource consumption and lighter executables, but none share the community, learning resources, or the widespread adoption of Electron.

Getting started with Electron

If you arent already familiar with Electron, its pretty easy to get started, especially because knowledge of Node.js and JavaScript is transferrable.

Electron provides abstractions and a familiar language, reducing the time to market and development costs. Essentially, what Electron does for desktop app development is similar to what React Native does for mobile development.

Electron also manages building and deploying app updates, making it easy to keep cross-platform apps in a synced version. You can achieve this with auto-updates and by loading remote assets at runtime.

However, the benefits of Electron are not without their trade-offs. Electron ships with Chromium and Node.js environments, causing an Electron app to consume more resources than its natively implemented counterparts. As a result, there are mixed opinions about Electrons viability.

In addition, complex Electron apps present performance and developer experience challenges related to the underlying architecture. Lets consider these trade-offs in depth by analyzing three different app examples.

App-specific tradeoffs

Lets examine the high-level architectures of three fictional apps with varying complexity. Bear in mind that our app analysis does not aim to be exhaustive, rather, it aims to tease potential apps that you can build with Electron.

Low-complexity app

Lets start with a low-complexity app. For our example, well consider packaging a webpage as a desktop application. Examples could include instant messaging apps, data analysis dashboards, and online streaming apps.

Many businesses provide desktop versions of their successful web-based apps, making ours a common use case. Well use Electron to run the app on Chromium, eliminating unnecessary polyfills and providing a unified UI instead of a heterogeneous browser landscape.

Low-complexity app main features:

  • Code will be shared between the web app and the desktop app
  • The update cycle will be shared between the web app and desktop app
  • The desktop app will load the same assets as the web app and render them within Chromium
  • The backend (if applicable) will stay unchanged
  • The backend will be accessed the same way from both the desktop and web app
  • Features dependent on browser support, like WebWorkers and WebGL, will function cross-platform without changes
  • Well use standard web development tooling

High-level architecture for low-complexity app

As an example architecture, well use a desktop app for the Telegram chat web app. Electron will act as a wrapper for the existing web app without requiring any changes to the backend.

Low Complexity App Electron Architecture

Setting up Electron is easy for this type of app! There are no changes needed at the web app codebase level.

Medium-complexity app

A music streaming app like Spotify, which offers offline streaming support using a local cache, is a typical example of an app with a medium level of complexity. The desktop app can use Electron to build a local cache layer.

Similar to low-complexity apps, a medium-complexity app may also complement a web app. The main difference is the ability to provide offline support. Therefore, these apps are conceptually related to progressive web apps (PWAs) with offline support.

Main features:

  • Most of the code can be shared between web and desktop apps (i.e., in a UI layer)
  • The desktop app will have a local cache implementation that will intercept the backend requests, populate the cache, and serve cached results when offline
  • We need to use high-level Electron APIs to check if the desktop app is online or offline
  • The update cycle is not necessarily shared between the web and desktop. The desktop will load the UI from static files using its offline UI and create a custom request layer with the cache
  • You can leverage standard web development tooling with the exception of the custom request module, which must be developed and adjusted for Electron

High-level architecture

Lets imagine that our streaming app plays a song of the day. If there is no internet connection, it will serve the available cached song.

Medium Complexity App Electron Architecture

As outlined in the schema above, the UI will be served from local assets instead of a CDN, and the request layer has to be customized to support caching. While the example is relatively simple, the code-sharing and caching requirements will eventually increase in complexity, requiring custom Electron code.

High-complexity app

For the highest level of complexity, lets look at a batch image processing app like sharp. The app must be able to process thousands of images and work entirely offline.

Offline apps are significantly different from the previous two examples. Specifically, the typical backend workloads, like image processing, will execute within Electron by creating an offline application.

Main features:

  • Most of our code will be custom for the desktop app
  • The app will have its own release cycle
  • The backend will run from within Electron (i.e., from a render process)
  • Standard web development tooling can be used, but it depends on the defined architecture
  • We may need to use native modules like database access, image processing, or machine learning
  • Lower-level Electron API access may be needed from multiple processes, especially for interprocess communications (IPC)

High-level architecture

For the architecture proposal, lets consider the offline image processing app described above.

High Complexity Electron App Architecture

The schema structures the app following the Electron documentation, which brings some limitations. For one, there is noticeable performance degradation when running the long-lived, CPU-intensive operations in a hidden renderer process.

Note that you should never run the operations in the main process. Doing so may block the main process, causing your application to freeze or crash.

Additionally, coupling the business logic and transport layers to Electron APIs limits the options to reuse standard web development tooling. Communications between the main processes and renderer processes use IPC, which requires a main process roundtrip when communicating between two render processes.

If your app falls in the low or medium-complexity categories, congrats! Many of the headaches that arise in offline apps won't apply to you. However, if your app requirements fall in the high complexity range, there is still hope!

Advanced architecture proposal

When we consider issues in offline apps like performance degradation, roundtrip communication between render processes, and the overall developer experience, we need a specialized architecture:

Advanced Modularized Architecture Proposal The proposed architecture is built on the following pillars:

  • The code shared between the frontend and the backend is extracted into a single module
  • The UI code is Electron agnostic, so web development best practices can be applied
  • The UI and page routing are built using controlled components and a centralized app state
  • The backend is run from a separate Node.js process
  • The frontend and backend modules communicate through message passing

Lets go through each of the modules in detail!

Note: parts of the stack are chosen purely due to personal preference and are interchangeable. For example, you can swap TypeScript for JavaScript, React for Vue, Redux for MobX, or npm packages for code sharing instead of Yarn workspaces. As long as the pillars mentioned above are respected, you have freedom of choice across the stack.

Shared module

The shared module is responsible for the code and types shared by both the frontend and backend modules. It enables you to develop both modules as separate entities while still sharing the domain-relevant code and types.

Codesharing is achieved using Yarn workspaces, a simple alternative to publishing the module as an npm package, releasing, and versioning it.

Main features:

  • TypeScript codebase
  • Typings for message passing communication: contains payloads and message handlers required in both the frontend and backend
  • Domain models and entities
  • Shared utilities like logging and event reporting

Frontend module

The frontend module is responsible for all things UI. It contains the components and animations of our app but not the business logic. In production, Electron serves it from generated static files.

Main features:

  • TypeScript codebase with access to the shared module
  • Uses React for building the user interface with Create React App as a template
  • Uses Redux as the state manager, which deterministically defines the UIs render state
  • Communication with the backend through message passing: the frontend exposes a message handler that listens for messages from the backend and modifies the Redux store accordingly
  • Component development in isolation using Storybook

Backend with Electron module

The backend module contains the backend codebase and the Electron setup code. The business logic and long-running operations, like image processing, will run in a separate Node.js process so that the UI doesn't suffer from degraded performance.

Main features:

  • TypeScript codebase, with access to the shared module
  • The backend runs as a forked Node.js process, which improves performance for long-running and computationally expensive tasks
  • Access to native dependencies
  • Performs a pre-build step that matches native dependencies with the Electron version
  • Contains the required Electron configuration and packaging scripts

Communication layer

The frontend and backend communicate using interprocess message passing with node-ipc. The message passing allows for async and event-based communication.

async communication is best suited for short-lived operations. The frontend can wait until the backend processes the message to get the result right away.

Event-based communication is better suited for long-lived operations, like batch processing. As the task processes in the backend, it sends events that will modify the frontends app state in Redux. The backend can asynchronously complete long-running tasks and periodically update the progress displayed by the UI.

Main features:

  • node-ipc as the communication library
  • Fully typed message payloads and handlers in the shared module
  • Async and message-based communication support

Conclusion

Electron is a great choice for building cross-platform desktop applications using different web technologies. Although Electron is easy to use in low-complexity apps, performance and developer experience limitations will surface as the complexity increases.

The proposed architecture aims to provide a sound conceptual foundation for high complexity apps. Of course, it may need to be extended depending on the use case, but Ive found that it serves as a good foundation for many types of apps.

LogRocket: Full visibility into your web apps

LogRocket Dashboard Free Trial Banner

LogRocket is a frontend application monitoring solution that lets you replay problems as if they happened in your own browser. Instead of guessing why errors happen, or asking users for screenshots and log dumps, LogRocket lets you replay the session to quickly understand what went wrong. It works perfectly with any app, regardless of framework, and has plugins to log additional context from Redux, Vuex, and ngrx/store.

In addition to logging Redux actions and state, LogRocket records console logs, JavaScript errors, stacktraces, network requests/responses with headers + bodies, browser metadata, and custom logs. It also instruments the DOM to record the HTML and CSS on the page, recreating pixel-perfect videos of even the most complex single-page apps.

Try it for free.


Original Link: https://dev.to/logrocket/advanced-electron-js-architecture-cj6

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To