-
Notifications
You must be signed in to change notification settings - Fork 51
Architecture
hummingly edited this page Jun 26, 2021
·
3 revisions
Electron launches the main process, which sets up a window and launches the renderer process. The renderer process is separated in a backend and frontend.
- The backend has access to the database, and provides functions for the frontend to interact with it (like endpoints in an API).
- The frontend fetches data from the backend based on the actions of the user, and stores this in the application state.
More detailed information can be found in the documentation of individual files and in the readme files of subfolders.