electron/docs/tutorial/application-distribution.md

120 строки
3.5 KiB
Markdown
Исходник Обычный вид История

# Application distribution
2015-04-16 06:31:12 +03:00
To distribute your app with Electron, you should name the folder of your app
as `app`, and put it under Electron's resources directory (on OS X it is
`Electron.app/Contents/Resources/`, and on Linux and Windows it is `resources/`),
like this:
On OS X:
```text
2015-04-16 06:31:12 +03:00
electron/Electron.app/Contents/Resources/app/
├── package.json
├── main.js
└── index.html
```
On Windows and Linux:
```text
2015-04-16 06:31:12 +03:00
electron/resources/app
├── package.json
├── main.js
└── index.html
```
2015-04-16 06:31:12 +03:00
Then execute `Electron.app` (or `atom` on Linux, and `atom.exe` on Windows), and
Electron will start as your app. The `electron` directory would then be
your distribution that should be delivered to final users.
2014-12-29 21:46:15 +03:00
## Packaging your app into a file
Apart from shipping your app by copying all its sources files, you can also
package your app into an [asar](https://github.com/atom/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
2015-04-16 06:31:12 +03:00
archive to `app.asar`, and put it under Electron's resources directory like
bellow, and Electron will then try read the archive and start from it.
2014-12-29 21:46:15 +03:00
On OS X:
2014-12-29 21:46:15 +03:00
```text
2015-04-16 06:31:12 +03:00
electron/Electron.app/Contents/Resources/
2014-12-29 21:46:15 +03:00
└── app.asar
```
On Windows and Linux:
```text
2015-04-16 06:31:12 +03:00
electron/resources/
2014-12-29 21:46:15 +03:00
└── app.asar
```
2014-12-29 21:46:15 +03:00
More details can be found in [Application packaging](application-packaging.md).
## Rebranding with downloaded binaries
2014-12-29 21:46:15 +03:00
2015-04-16 06:31:12 +03:00
After bundling your app into Electron, you will want to rebrand Electron
before distributing it to users.
2014-09-29 17:34:54 +04:00
2014-12-29 21:46:15 +03:00
If you don't care about the executable name on Windows or the helper process
name on OS X, you can simply rename the downloaded binaries, and there is also a
2015-04-16 06:31:12 +03:00
grunt task that can download prebuilt Electron binaries for your current
platform automatically:
2014-12-29 21:46:15 +03:00
[grunt-download-atom-shell](https://github.com/atom/grunt-download-atom-shell).
2014-09-29 17:34:54 +04:00
### Windows
2014-09-29 17:34:54 +04:00
2014-12-29 21:46:15 +03:00
You can not rename the `atom.exe` otherwise native modules will not load. But
you can edit the executable's icon and other information with tools like
[rcedit](https://github.com/atom/rcedit) or [ResEdit](http://www.resedit.net).
If you don't use any native Node module, it is fine to rename `atom.exe` to any
name you want.
### OS X
2014-12-29 21:46:15 +03:00
2015-04-16 06:31:12 +03:00
You can rename `Electron.app` to whatever you want, and you also have to rename the
2014-12-29 21:46:15 +03:00
`CFBundleDisplayName`, `CFBundleIdentifier` and `CFBundleName` fields in
following manifest files if they have these keys:
2014-12-29 21:46:15 +03:00
2015-04-16 06:31:12 +03:00
* `Electron.app/Contents/Info.plist`
* `Electron.app/Contents/Frameworks/Atom Helper.app/Contents/Info.plist`
2014-12-29 21:46:15 +03:00
### Linux
2014-12-29 21:46:15 +03:00
You can rename the `atom` executable to whatever you want.
2015-04-16 06:31:12 +03:00
## Rebranding by rebuilding Electron from source
2015-04-16 06:31:12 +03:00
The best way to rename Electron is to change the product name and then build
from source. To do this you need to override the `GYP_DEFINES` environment
variable and have a clean rebuild:
__Windows__
```cmd
> set "GYP_DEFINES=project_name=myapp product_name=MyApp"
> python script\bootstrap.py
> python script\build.py -c Release -t myapp
```
__Bash__
```bash
$ export GYP_DEFINES="project_name=myapp product_name=MyApp"
$ script/bootstrap.py
$ script/build.py -c Release -t myapp
```
### grunt-build-atom-shell
2015-04-16 06:31:12 +03:00
Manually checking out Electron's code and rebuilding could be complicated, so
a Grunt task has been created that will handle this automatically:
[grunt-build-atom-shell](https://github.com/paulcbetts/grunt-build-atom-shell).
This task will automatically handle editing the `.gyp` file, building from
source, then rebuilding your app's native Node modules to match the new
executable name.