The Nodejs "layer" of Electron will be delegated to perform all tasks which a typical web server would perform for a client web app.
- API calls
- Data preparation
- Heavy computations
This leaves the code running in the document to simply handle the UI and display data handed to it by the Node layer. This configuration ensures a responsive and lightweight UI that won't lag or freeze .
The Nodejs "layer" of Electron will be delegated to perform all tasks which a typical web server would perform for a client web app.
This leaves the code running in the document to simply handle the UI and display data handed to it by the Node layer. This configuration ensures a responsive and lightweight UI that won't lag or freeze .