2.1.3 • Published 5 days ago

@angablue/exe v2.1.3

Weekly downloads
-
License
LGPL-3.0-or-later
Repository
github
Last release
5 days ago

Build a portable binary for Windows systems using Vercel's pkg. As pkg doesn't support modifying executable properties, this project serves to and aid in automating modifying the executable properties post build with the aid of resedit-js.

🏠 Homepage

Install

Install this package and save to devDependencies using your package manager of choice.

 npm i -D @angablue/exe

Basic Usage

// build.js
const exe = require("@angablue/exe");

const build = exe({
  entry: "./index.js",
  out: "./build/My Cool App.exe",
});

build.then(() => console.log("Build completed!"));

Example Usage

Specify more arguments and completely customise the resultant executable.

// build.js
const exe = require("@angablue/exe");

const build = exe({
  entry: "./index.js",
  out: "./build/My Cool App.exe",
  pkg: ["-C", "GZip"], // Specify extra pkg arguments
  version: "2.4.2",
  target: "latest-win-x64",
  icon: "./assets/icon.ico", // Application icons must be in .ico format
  executionLevel: "asInvoker",
  properties: {
    FileDescription: "My Cool App",
    ProductName: "My Cool App",
    LegalCopyright: "AngaBlue https://anga.blue",
    OriginalFilename: "My Cool App.exe",
  },
});

build.then(() => console.log("Build completed!"));

Configuration Options

OptionDescriptionRequiredDefault ValueExample ValuePossible Values
entryPath to the entry file of the application.YesN/A'./index.js'Any valid file path.
outPath for the output executable file.YesN/A'./build/My Cool App.exe'Any valid file path.
pkgExtra arguments for the pkg package.No[]['-C', 'GZip']Array of pkg arguments.
versionVersion of the application.NoNone'2.4.2'Semantic version string. e.g. major.minor.patch
targetTarget node version and architecture.No'latest-win-x64''latest-win-x64'Windows pkg target string. e.g. latest-win-x64, node18-windows-x64, etc.
iconPath to the application's icon in .ico format.NoNode.js icon'./assets/icon.ico'Any valid .ico file path.
executionLevelExecution level for the application.No'asInvoker''asInvoker'asInvoker, highestAvailable, requireAdministrator
propertiesMetadata for the executable file.NoNone{ FileDescription: 'My Cool App', ... }Key-value pairs as shown in example.

Note on properties:

  • FileDescription: Description of the executable.
  • ProductName: Name of the product.
  • LegalCopyright: Copyright details with the URL.
  • OriginalFilename: Name of the original file.

Show your support

Give a ⭐️ if this project helped you!

📝 License

Copyright © AngaBlue. This project is LGPL--3.0--or--later licensed.

2.1.3

5 days ago

2.1.2

3 months ago

2.1.1

6 months ago

2.1.0

6 months ago

2.0.2

9 months ago

2.0.0

9 months ago

1.2.0

1 year ago

1.1.6

2 years ago

1.1.5

2 years ago

1.1.3

2 years ago

1.1.2

2 years ago

1.1.1

2 years ago

1.1.0

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago