目录

Distribution

Guides that describe how to distribute your application to users.

Overview 

Distributing a desktop application involves more than just sharing files. Before your users can run your application, you need to sign it so that the operating system and your users can trust it. Once distributed, you will also want a way to deliver updates without requiring users to manually download and reinstall the application.

MōBrowser provides everything you need to prepare your application for distribution. Just provide the required information in the mobrowser.conf.json file and run:

npm run mobrowser build

Running this command will:

  1. Build your application.
  2. Package it into a native executable.
  3. Create a native installer.
  4. Sign the native executable and installer (and notarize it on macOS).
  5. Generate the update files for the update server.

Topics