Create the PlugIns folder in the Electron root folder.
Copy the .appex file to the PlugIns folder.
If you are using an electronic builder, modify the package.json file - add: "extraFiles": ["PlugIns/"]in the "mac" section.
Build. The contents of your application package will contain the PlugIns folder and your apx file inside, and the application will be loaded into your application process.
source
share