November 2019
Beginner
436 pages
8h 52m
English
In most cases, the users of your application may only use it when required and then minimize or close the app.
You can significantly improve user experience by keeping the application up and running in the background and displaying it in the system tray area. Another essential feature is to have a global keyboard shortcut so that the users of your application can quickly invoke it without needing to use the mouse.
Let's start by integrating the system tray:
const { Menu, Tray } = require('electron'); const path = require('path'); ...Read now
Unlock full access