0.9.2 • Published 11 months ago

yackage v0.9.2

Weekly downloads
20
License
Unlicense
Repository
github
Last release
11 months ago

yackage

Package your Node.js project into an executable.

This project is targeted for apps built with Yue library and Yode Node.js runtime.

Install

npm i -g yackage

Usage

Usage: yackage [options] [command]

Options:

  --platform <platform>          Target platform (default: $npm_config_platform ||
                                 process.platform)
  --arch <arch>                  Target arch (default: $npm_config_arch ||
                                 process.arch)
  --app-dir <dir>                Path to the source code dir of app (default:
                                 current working dir)
  --unpack <pattern>             Files to ignore when generating asar package
                                 (default: *.node)
  --unpack-dir <pattern>         Dirs to ignore when generating asar package
  --no-minify                    Do not minify the JavaScript source code
  --extra-info-plist             The extra string to insert into the Info.plist
  --identity <identity>          The identity used for signing app bundle on macOS
  --entitlements <entitlements>  Path to the entitlements file when signing app
                                 bundle on macOS

Commands:

  init                     Create an empty project under current directory
  build <outputDir>        Build app bundle
  dist <outputDir>         Build app bundle and generate app distribution
  dirty-build <outputDir>  Build app bundle without reinstalling modules

Note that before using Yackage, the target app must have fetch-yode listed as a dependency.

Configuration

Configure your project by adding following fields to package.json:

{
  "build": {
    "appId": "com.app.id"
    "productName": "App"
    "copyright": "Copyright © 2020 Company",
    "minify": true,
    "unpack": "+(*.node|*.png)",
    "unpackDir": "{assets,build}",
    "ignore": [ "assets/*" ],
    "icons": {
      "win": "assets/icon.ico",
      "mac": "assets/icon.icns"
    },
    "extraInfoPlist": "<key>LSUIElement</key><true/>"
  }
}

Examples

Generate executable from the app under current working directory:

cd /path/to/app/
yackage build out

Generate executable from path under arbitrary path:

yackage build out --app-dir /path/to/app

Generate executable for arbitrary platform:

yackage build out --platform win32 --arch ia32

Generate distributions:

yackage dist out --app-dir /path/to/app

How yackage works

  1. Run npm pack to generate tarball for the app.
  2. Extract the tarball to temporary directory and run npm install.
  3. Use asar to pacakge the app and its dependencies.
  4. Append the generated ASAR archive to Yode.
  5. Yode would automatically recognize the ASAR archive appended in the executable and start with it.

Differences from packaging in Electron

By default yackage would unpack the .node files so they are not extracted dynamically when running, otherwise anti-virus softwares would complain.

The unpacked files are placed in the res directory instead of the usual .unpacked directory, so the final distribution would look more formal.

The .js files are compressed with uglify-js by default.

The virutal root directory of ASAR archive is ${process.execPath}/asar. Using process.execPath as virutal root directory directly would confuse Node.js since it should be a file.

License

Public domain.

0.9.0

11 months ago

0.9.2

11 months ago

0.8.3

11 months ago

0.9.1

11 months ago

0.8.2

11 months ago

0.8.1

1 year ago

0.8.0

1 year ago

0.7.1

1 year ago

0.7.0

1 year ago

0.5.0

2 years ago

0.6.0

2 years ago

0.5.1

2 years ago

0.4.0

3 years ago

0.3.1

4 years ago

0.3.0

4 years ago

0.2.12

4 years ago

0.2.11

5 years ago

0.2.10

5 years ago

0.2.9

5 years ago

0.2.8

5 years ago

0.2.7

5 years ago

0.2.6

6 years ago

0.2.5

6 years ago

0.2.4

6 years ago

0.2.3

6 years ago

0.2.2

6 years ago

0.2.1

6 years ago

0.2.0

6 years ago

0.1.5

6 years ago

0.1.4

6 years ago

0.1.3

6 years ago

0.1.2

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago