Electron App Package For Mac
Chrome desktop app launcher download. Electron: Create a single app for Windows, Linux, and Mac Posted by Ernie Salazar on November 30, 2016 The days of the Microsoft Windows operating system domination are over. With Electron, creating a desktop application for your company or idea is easy. Initially developed for GitHub's Atom editor, Electron has since been used to create applications by companies like Microsoft, Facebook, Slack, and Docker. Apart from shipping your app by copying all of its source files, you can also package your app into an asar archive to avoid exposing your app's source code to users. To use an asar archive to replace the app folder, you need to rename the archive to app.asar, and put it under Electron's resources directory like below, and Electron will then try to read the archive and start from it.
Top Electron Apps
Build The MAS App The first step is to compile your application into an.app bundle. Notice that the --platform which you would normally expect to be 'darwin' is instead 'mas' to indicate this build is for the Mac App Store. Currenly only sethlu's fork supports the mas platform. The difference is that MAS builds ommit certain libraries and private API calls that will cause the electron app to be rejected. Open terminal and CD to your application source directory. Run the following command: electron-packager.