Electron Packager
A electron packager that packages your application bundle less than 1 MB!
Please keep in mind that this works only on macOS at the moment.
How does it work?
The packaged application bundle of your app is so small because it doesn't contains large resources like Electron Framework.framework
. These resources are stored globally in the library of a user (macOS).
If the resources in your library do not exist, a downloading process will be started.
A detailed explanation how the packer works sou find below.
Module
Install
npm install electron_packager
const electronPackager = require("electron_packager");
Packaging an app
electronPackager.package({
source: "your/source/electron/app/directory",
platform: "darwin",
target: "your/target/folder",
name: "My app name",
icon: "your/icon/file.icns",
identifier: "com.yourapp.yourcompany",
version: "latest"
}, function(err, result) {
if (err) return console.error(err);
console.log(result);
});
As you see, you can specify the electron version, your bundle shall be bundled with.
This is important because all applications on one user account use the same electron resources.
CLI
npm install electron_packager -g
electron_packager src=<source> target=<target> name=YourApp icon=/your/icon/file.icns identifier=com.yourApp.yourCompany version=latest
|Argument|Default
|----------------
|src
|Required
|target
|Parent directory of source
|name
|package.json->name
|icon
|false
|identifier
|com.package.json->name
.package.json->author
|version|latest
Version Logic
If an application is used to start, the background manage process checks it's version and the version of the resources within the library. If the version of your app is higher than the version of the resources within the library, a downloading process will download the latest version of electron.
If the app's version is lower than the installed version within the library, your program is going to open.