✈️Build the Application for platforms

Now you can use this customized application to build applications macOS, Windows and Linux platforms.

First, you need to install electron-builder package locally on the project folder:

$ npm i electron-builder -g

To build all platform :

$ electron-builder -mwl

To build the macOS platform:

$ electron-builder --mac

To build the Windows platform:

$ electron-builder --win

To build the Linux platform:

$ electron-builder --linux

Built output applications are located in the newly created directory called “dist” which is inside your application directory.

Last updated