2
2
mirror of https://github.com/Llewellynvdm/nativefier.git synced 2024-06-01 20:30:48 +00:00
Go to file
=^._.^= 5cc8a4b688 Merge pull request #82 from kfranqueiro/win32-ignore
Fix path separator replacement for ignore on Windows
2015-06-27 19:27:07 -05:00
downloaded update name 2015-03-22 19:55:15 -07:00
.gitignore gitignore 2015-03-22 19:55:57 -07:00
.travis.yml dont download atom-shell -- use local version instead 2015-04-04 09:47:01 -07:00
cli.js Support --overwrite 2015-06-23 10:54:45 -07:00
collaborators.md update collabs 2015-05-11 12:03:44 -07:00
common.js Fix path separator replacement for ignore on Windows 2015-06-22 21:32:15 -04:00
CONTRIBUTING.md Update CONTRIBUTING.md 📖 😉 2015-06-01 15:10:37 -07:00
index.js Rename variable which mirrors the function name 2015-06-09 20:38:09 -07:00
LICENSE license file 2015-06-23 10:15:19 -07:00
linux.js Merge pull request #82 from kfranqueiro/win32-ignore 2015-06-27 19:27:07 -05:00
mac.js Merge pull request #76 from kfranqueiro/rename-helper 2015-06-27 19:26:42 -05:00
package.json bsd-2-clause 2015-06-23 10:15:19 -07:00
readme.md version-string hash added to update the windows executable resource 2015-06-12 21:02:47 +05:30
usage.txt breaking change. allow building apps for other platforms 2015-05-10 13:57:42 -07:00
win32.js Merge pull request #82 from kfranqueiro/win32-ignore 2015-06-27 19:27:07 -05:00

electron-packager

Package your electron app in OS executables (.app, .exe, etc) via JS or CLI. Supports building Windows, Linux or Mac executables.

formerly known as atom-shell-packager

NPM

Build Status

installation

# for use in npm scripts
npm i electron-packager --save-dev

# for use from cli
npm i electron-packager -g

usage

Usage: electron-packager <sourcedir> <appname> --platform=<platform> --arch=<arch> --version=<version>
  
Required options

platform           linux, win32, darwin
arch               ia32, x64
version            see https://github.com/atom/electron/releases
                  
Example            electron-packager ./ FooBar --platform=darwin --arch=x64 --version=0.25.1

Optional options

out                the dir to put the app into at the end. defaults to current working dir
icon               the icon file to use as the icon for the app
app-bundle-id      bundle identifier to use in the app plist
app-version        version to set for the app
helper-bundle-id   bundle identifier to use in the app helper plist
ignore             do not copy files into App whose filenames regex .match this string
prune              runs `npm prune --production` on the app
asar               packages the source code within your app into an archive
sign               should contain the identity to be used when running `codesign` (OS X only)
version-string     should contain a hash of the application metadata to be embedded into the executable (Windows only). Keys supported
                   - CompanyName
                   - LegalCopyright
                   - FileDescription
                   - OriginalFilename
                   - FileVersion
                   - ProductVersion
                   - ProductName
                   - InternalName
                   

This will:

  • Find or download the correct release of Electron
  • Use that version of electron to create a app in cwd named using appname for the platform you specified

You should be able to launch the app on the platform you built for. If not, check your settings and try again.

Be careful not to include node_modules you don't want into your final app. Electron-packager, electron-prebuilt and .git will be ignored by default. You can use --ignore to ignore files and folders, e.g. --ignore=node_modules/electron-packager or --ignore="node_modules/(electron-packager|electron-prebuilt)".

API

var packager = require('electron-packager')
packager(opts, function done (err, appPath) {

})

packager(opts, callback)

opts

Required
dir - String
The source directory.

name - String
The application name.

platform - String
Allowed values: linux, win32, darwin

arch - String
Allowed values: ia32, x64

version - String
Semver, see https://github.com/atom/electron/releases

Optional
out - String

icon - String

app-bundle-id - String

app-version - String

helper-bundle-id - String

ignore - String

prune - Boolean

asar - Boolean

sign - String

callback

err - Error
Contains errors if any.

appPath - String
Path to the newly created application.

Building windows apps from non-windows platforms

If you run this on windows and you want to set the icon for your app using the --icon option, it requires running a thing called rcedit.exe (via this), which means you will need to install wine and have it available in your path. To do this on Mac OS you can brew install wine.