The Electron dialog module provides us with the ability to display native system-level dialogs, including file open, file save, and various alerts. If you have written traditional web apps, you will know that these types of dialogs are not all available to you. In this chapter, we will look at the three dialog types and many of the parameters we can control.
The Dialog module is restricted to the Main process, meaning to interact with it we will either need to call its methods from a menu event, ...