See More

{ "type": "module", "source": "doc/api/single-executable-applications.md", "modules": [ { "textRaw": "Single executable applications", "name": "single_executable_applications", "introduced_in": "v19.7.0", "type": "module", "meta": { "added": [ "v19.7.0", "v18.16.0" ], "changes": [ { "version": "v25.5.0", "pr-url": "https://github.com/nodejs/node/pull/61167", "description": "Added built-in single executable application generation via the CLI flag `--build-sea`." }, { "version": "v20.6.0", "pr-url": "https://github.com/nodejs/node/pull/46824", "description": "Added support for \"useSnapshot\"." }, { "version": "v20.6.0", "pr-url": "https://github.com/nodejs/node/pull/48191", "description": "Added support for \"useCodeCache\"." } ] }, "stability": 1.1, "stabilityText": "Active development", "desc": "

This feature allows the distribution of a Node.js application conveniently to a\nsystem that does not have Node.js installed.

\n

Node.js supports the creation of single executable applications by allowing\nthe injection of a blob prepared by Node.js, which can contain a bundled script,\ninto the node binary. During start up, the program checks if anything has been\ninjected. If the blob is found, it executes the script in the blob. Otherwise\nNode.js operates as it normally does.

\n

The single executable application feature supports running a\nsingle embedded script using the CommonJS or the ECMAScript Modules module system.

\n

Users can create a single executable application from their bundled script\nwith the node binary itself and any tool which can inject resources into the\nbinary.

\n
    \n
  1. \n

    Create a JavaScript file:

    \n
    echo 'console.log(`Hello, ${process.argv[2]}!`);' > hello.js\n
    \n
  2. \n
  3. \n

    Create a configuration file building a blob that can be injected into the\nsingle executable application (see\nGenerating single executable preparation blobs for details):

    \n
      \n
    • On systems other than Windows:
    • \n
    \n
    echo '{ \"main\": \"hello.js\", \"output\": \"sea\" }' > sea-config.json\n
    \n
      \n
    • On Windows:
    • \n
    \n
    echo '{ \"main\": \"hello.js\", \"output\": \"sea.exe\" }' > sea-config.json\n
    \n

    The .exe extension is necessary.

    \n
  4. \n
  5. \n

    Generate the target executable:

    \n
    node --build-sea sea-config.json\n
    \n
  6. \n
  7. \n

    Sign the binary (macOS and Windows only):

    \n
      \n
    • On macOS:
    • \n
    \n
    codesign --sign - sea\n
    \n
      \n
    • On Windows (optional):
    • \n
    \n

    A certificate needs to be present for this to work. However, the unsigned\nbinary would still be runnable.

    \n
    signtool sign /fd SHA256 sea.exe\n
    \n
  8. \n
  9. \n

    Run the binary:

    \n
      \n
    • On systems other than Windows
    • \n
    \n
    $ ./sea world\nHello, world!\n
    \n
      \n
    • On Windows
    • \n
    \n
    $ .\\sea.exe world\nHello, world!\n
    \n
  10. \n
", "modules": [ { "textRaw": "Generating single executable applications with `--build-sea`", "name": "generating_single_executable_applications_with_`--build-sea`", "type": "module", "desc": "

To generate a single executable application directly, the --build-sea flag can be\nused. It takes a path to a configuration file in JSON format. If the path passed to it\nisn't absolute, Node.js will use the path relative to the current working directory.

\n

The configuration currently reads the following top-level fields:

\n
{\n  \"main\": \"/path/to/bundled/script.js\",\n  \"mainFormat\": \"commonjs\", // Default: \"commonjs\", options: \"commonjs\", \"module\"\n  \"executable\": \"/path/to/node/binary\", // Optional, if not specified, uses the current Node.js binary\n  \"output\": \"/path/to/write/the/generated/executable\",\n  \"disableExperimentalSEAWarning\": true, // Default: false\n  \"useSnapshot\": false,  // Default: false\n  \"useCodeCache\": true, // Default: false\n  \"execArgv\": [\"--no-warnings\", \"--max-old-space-size=4096\"], // Optional\n  \"execArgvExtension\": \"env\", // Default: \"env\", options: \"none\", \"env\", \"cli\"\n  \"assets\": {  // Optional\n    \"a.dat\": \"/path/to/a.dat\",\n    \"b.txt\": \"/path/to/b.txt\"\n  }\n}\n
\n

If the paths are not absolute, Node.js will use the path relative to the\ncurrent working directory. The version of the Node.js binary used to produce\nthe blob must be the same as the one to which the blob will be injected.

\n

Note: When generating cross-platform SEAs (e.g., generating a SEA\nfor linux-x64 on darwin-arm64), useCodeCache and useSnapshot\nmust be set to false to avoid generating incompatible executables.\nSince code cache and snapshots can only be loaded on the same platform\nwhere they are compiled, the generated executable might crash on startup when\ntrying to load code cache or snapshots built on a different platform.

", "modules": [ { "textRaw": "Assets", "name": "assets", "type": "module", "desc": "

Users can include assets by adding a key-path dictionary to the configuration\nas the assets field. At build time, Node.js would read the assets from the\nspecified paths and bundle them into the preparation blob. In the generated\nexecutable, users can retrieve the assets using the sea.getAsset() and\nsea.getAssetAsBlob() APIs.

\n
{\n  \"main\": \"/path/to/bundled/script.js\",\n  \"output\": \"/path/to/write/the/generated/executable\",\n  \"assets\": {\n    \"a.jpg\": \"/path/to/a.jpg\",\n    \"b.txt\": \"/path/to/b.txt\"\n  }\n}\n
\n

The single-executable application can access the assets as follows:

\n
const { getAsset, getAssetAsBlob, getRawAsset, getAssetKeys } = require('node:sea');\n// Get all asset keys.\nconst keys = getAssetKeys();\nconsole.log(keys); // ['a.jpg', 'b.txt']\n// Returns a copy of the data in an ArrayBuffer.\nconst image = getAsset('a.jpg');\n// Returns a string decoded from the asset as UTF8.\nconst text = getAsset('b.txt', 'utf8');\n// Returns a Blob containing the asset.\nconst blob = getAssetAsBlob('a.jpg');\n// Returns an ArrayBuffer containing the raw asset without copying.\nconst raw = getRawAsset('a.jpg');\n
\n

See documentation of the sea.getAsset(), sea.getAssetAsBlob(),\nsea.getRawAsset() and sea.getAssetKeys() APIs for more information.

", "displayName": "Assets" }, { "textRaw": "Startup snapshot support", "name": "startup_snapshot_support", "type": "module", "desc": "

The useSnapshot field can be used to enable startup snapshot support. In this\ncase, the main script would not be executed when the final executable is launched.\nInstead, it would be run when the single executable application preparation\nblob is generated on the building machine. The generated preparation blob would\nthen include a snapshot capturing the states initialized by the main script.\nThe final executable, with the preparation blob injected, would deserialize\nthe snapshot at run time.

\n

When useSnapshot is true, the main script must invoke the\nv8.startupSnapshot.setDeserializeMainFunction() API to configure code\nthat needs to be run when the final executable is launched by the users.

\n

The typical pattern for an application to use snapshot in a single executable\napplication is:

\n
    \n
  1. At build time, on the building machine, the main script is run to\ninitialize the heap to a state that's ready to take user input. The script\nshould also configure a main function with\nv8.startupSnapshot.setDeserializeMainFunction(). This function will be\ncompiled and serialized into the snapshot, but not invoked at build time.
  2. \n
  3. At run time, the main function will be run on top of the deserialized heap\non the user machine to process user input and generate output.
  4. \n
\n

The general constraints of the startup snapshot scripts also apply to the main\nscript when it's used to build snapshot for the single executable application,\nand the main script can use the v8.startupSnapshot API to adapt to\nthese constraints. See\ndocumentation about startup snapshot support in Node.js.

", "displayName": "Startup snapshot support" }, { "textRaw": "V8 code cache support", "name": "v8_code_cache_support", "type": "module", "desc": "

When useCodeCache is set to true in the configuration, during the generation\nof the single executable preparation blob, Node.js will compile the main\nscript to generate the V8 code cache. The generated code cache would be part of\nthe preparation blob and get injected into the final executable. When the single\nexecutable application is launched, instead of compiling the main script from\nscratch, Node.js would use the code cache to speed up the compilation, then\nexecute the script, which would improve the startup performance.

\n

Note: import() does not work when useCodeCache is true.

", "displayName": "V8 code cache support" }, { "textRaw": "Execution arguments", "name": "execution_arguments", "type": "module", "desc": "

The execArgv field can be used to specify Node.js-specific\narguments that will be automatically applied when the single\nexecutable application starts. This allows application developers\nto configure Node.js runtime options without requiring end users\nto be aware of these flags.

\n

For example, the following configuration:

\n
{\n  \"main\": \"/path/to/bundled/script.js\",\n  \"output\": \"/path/to/write/the/generated/executable\",\n  \"execArgv\": [\"--no-warnings\", \"--max-old-space-size=2048\"]\n}\n
\n

will instruct the SEA to be launched with the --no-warnings and\n--max-old-space-size=2048 flags. In the scripts embedded in the executable, these flags\ncan be accessed using the process.execArgv property:

\n
// If the executable is launched with `sea user-arg1 user-arg2`\nconsole.log(process.execArgv);\n// Prints: ['--no-warnings', '--max-old-space-size=2048']\nconsole.log(process.argv);\n// Prints ['/path/to/sea', 'path/to/sea', 'user-arg1', 'user-arg2']\n
\n

The user-provided arguments are in the process.argv array starting from index 2,\nsimilar to what would happen if the application is started with:

\n
node --no-warnings --max-old-space-size=2048 /path/to/bundled/script.js user-arg1 user-arg2\n
", "displayName": "Execution arguments" }, { "textRaw": "Execution argument extension", "name": "execution_argument_extension", "type": "module", "desc": "

The execArgvExtension field controls how additional execution arguments can be\nprovided beyond those specified in the execArgv field. It accepts one of three string values:

\n\n

For example, with \"execArgvExtension\": \"cli\":

\n
{\n  \"main\": \"/path/to/bundled/script.js\",\n  \"output\": \"/path/to/write/the/generated/executable\",\n  \"execArgv\": [\"--no-warnings\"],\n  \"execArgvExtension\": \"cli\"\n}\n
\n

The executable can be launched as:

\n
./my-sea --node-options=\"--trace-exit\" user-arg1 user-arg2\n
\n

This would be equivalent to running:

\n
node --no-warnings --trace-exit /path/to/bundled/script.js user-arg1 user-arg2\n
", "displayName": "Execution argument extension" } ], "displayName": "Generating single executable applications with `--build-sea`" }, { "textRaw": "Single-executable application API", "name": "single-executable_application_api", "type": "module", "desc": "

The node:sea builtin allows interaction with the single-executable application\nfrom the JavaScript main script embedded into the executable.

", "methods": [ { "textRaw": "`sea.isSea()`", "name": "isSea", "type": "method", "meta": { "added": [ "v21.7.0", "v20.12.0" ], "changes": [] }, "signatures": [ { "params": [], "return": { "textRaw": "Returns: {boolean} Whether this script is running inside a single-executable application.", "name": "return", "type": "boolean", "desc": "Whether this script is running inside a single-executable application." } } ] }, { "textRaw": "`sea.getAsset(key[, encoding])`", "name": "getAsset", "type": "method", "meta": { "added": [ "v21.7.0", "v20.12.0" ], "changes": [] }, "signatures": [ { "params": [ { "textRaw": "`key` {string} the key for the asset in the dictionary specified by the `assets` field in the single-executable application configuration.", "name": "key", "type": "string", "desc": "the key for the asset in the dictionary specified by the `assets` field in the single-executable application configuration." }, { "textRaw": "`encoding` {string} If specified, the asset will be decoded as a string. Any encoding supported by the `TextDecoder` is accepted. If unspecified, an `ArrayBuffer` containing a copy of the asset would be returned instead.", "name": "encoding", "type": "string", "desc": "If specified, the asset will be decoded as a string. Any encoding supported by the `TextDecoder` is accepted. If unspecified, an `ArrayBuffer` containing a copy of the asset would be returned instead.", "optional": true } ], "return": { "textRaw": "Returns: {string | ArrayBuffer}", "name": "return", "type": "string | ArrayBuffer" } } ], "desc": "

This method can be used to retrieve the assets configured to be bundled into the\nsingle-executable application at build time.\nAn error is thrown when no matching asset can be found.

" }, { "textRaw": "`sea.getAssetAsBlob(key[, options])`", "name": "getAssetAsBlob", "type": "method", "meta": { "added": [ "v21.7.0", "v20.12.0" ], "changes": [] }, "signatures": [ { "params": [ { "textRaw": "`key` {string} the key for the asset in the dictionary specified by the `assets` field in the single-executable application configuration.", "name": "key", "type": "string", "desc": "the key for the asset in the dictionary specified by the `assets` field in the single-executable application configuration." }, { "textRaw": "`options` {Object}", "name": "options", "type": "Object", "options": [ { "textRaw": "`type` {string} An optional mime type for the blob.", "name": "type", "type": "string", "desc": "An optional mime type for the blob." } ], "optional": true } ], "return": { "textRaw": "Returns: {Blob}", "name": "return", "type": "Blob" } } ], "desc": "

Similar to sea.getAsset(), but returns the result in a Blob.\nAn error is thrown when no matching asset can be found.

" }, { "textRaw": "`sea.getRawAsset(key)`", "name": "getRawAsset", "type": "method", "meta": { "added": [ "v21.7.0", "v20.12.0" ], "changes": [] }, "signatures": [ { "params": [ { "textRaw": "`key` {string} the key for the asset in the dictionary specified by the `assets` field in the single-executable application configuration.", "name": "key", "type": "string", "desc": "the key for the asset in the dictionary specified by the `assets` field in the single-executable application configuration." } ], "return": { "textRaw": "Returns: {ArrayBuffer}", "name": "return", "type": "ArrayBuffer" } } ], "desc": "

This method can be used to retrieve the assets configured to be bundled into the\nsingle-executable application at build time.\nAn error is thrown when no matching asset can be found.

\n

Unlike sea.getAsset() or sea.getAssetAsBlob(), this method does not\nreturn a copy. Instead, it returns the raw asset bundled inside the executable.

\n

For now, users should avoid writing to the returned array buffer. If the\ninjected section is not marked as writable or not aligned properly,\nwrites to the returned array buffer is likely to result in a crash.

" }, { "textRaw": "`sea.getAssetKeys()`", "name": "getAssetKeys", "type": "method", "meta": { "added": [ "v24.8.0", "v22.20.0" ], "changes": [] }, "signatures": [ { "params": [], "return": { "textRaw": "Returns {string[]} An array containing all the keys of the assets embedded in the executable. If no assets are embedded, returns an empty array.", "name": "return", "type": "string[]", "desc": "An array containing all the keys of the assets embedded in the executable. If no assets are embedded, returns an empty array." } } ], "desc": "

This method can be used to retrieve an array of all the keys of assets\nembedded into the single-executable application.\nAn error is thrown when not running inside a single-executable application.

" } ], "displayName": "Single-executable application API" }, { "textRaw": "In the injected main script", "name": "in_the_injected_main_script", "type": "module", "modules": [ { "textRaw": "Module format of the injected main script", "name": "module_format_of_the_injected_main_script", "type": "module", "desc": "

To specify how Node.js should interpret the injected main script, use the\nmainFormat field in the single-executable application configuration.\nThe accepted values are:

\n\n

If the mainFormat field is not specified, it defaults to \"commonjs\".

\n

Currently, \"mainFormat\": \"module\" cannot be used together with \"useSnapshot\".

", "displayName": "Module format of the injected main script" }, { "textRaw": "Module loading in the injected main script", "name": "module_loading_in_the_injected_main_script", "type": "module", "desc": "

In the injected main script, module loading does not read from the file system.\nBy default, both require() and import statements would only be able to load\nthe built-in modules. Attempting to load a module that can only be found in the\nfile system will throw an error.

\n

Users can bundle their application into a standalone JavaScript file to inject\ninto the executable. This also ensures a more deterministic dependency graph.

\n

To load modules from the file system in the injected main script, users can\ncreate a require function that can load from the file system using\nmodule.createRequire(). For example, in a CommonJS entry point:

\n
const { createRequire } = require('node:module');\nrequire = createRequire(__filename);\n
", "displayName": "Module loading in the injected main script" }, { "textRaw": "`require()` in the injected main script", "name": "`require()`_in_the_injected_main_script", "type": "module", "desc": "

require() in the injected main script is not the same as the require()\navailable to modules that are not injected.\nCurrently, it does not have any of the properties that non-injected\nrequire() has except require.main.

", "displayName": "`require()` in the injected main script" }, { "textRaw": "`__filename` and `module.filename` in the injected main script", "name": "`__filename`_and_`module.filename`_in_the_injected_main_script", "type": "module", "desc": "

The values of __filename and module.filename in the injected main script\nare equal to process.execPath.

", "displayName": "`__filename` and `module.filename` in the injected main script" }, { "textRaw": "`__dirname` in the injected main script", "name": "`__dirname`_in_the_injected_main_script", "type": "module", "desc": "

The value of __dirname in the injected main script is equal to the directory\nname of process.execPath.

", "displayName": "`__dirname` in the injected main script" }, { "textRaw": "`import.meta` in the injected main script", "name": "`import.meta`_in_the_injected_main_script", "type": "module", "desc": "

When using \"mainFormat\": \"module\", import.meta is available in the\ninjected main script with the following properties:

\n\n

import.meta.resolve is currently not supported.

", "displayName": "`import.meta` in the injected main script" }, { "textRaw": "`import()` in the injected main script", "name": "`import()`_in_the_injected_main_script", "type": "module", "desc": "

When using \"mainFormat\": \"module\", import() can be used to dynamically\nload built-in modules. Attempting to use import() to load modules from\nthe file system will throw an error.

", "displayName": "`import()` in the injected main script" }, { "textRaw": "Using native addons in the injected main script", "name": "using_native_addons_in_the_injected_main_script", "type": "module", "desc": "

Native addons can be bundled as assets into the single-executable application\nby specifying them in the assets field of the configuration file used to\ngenerate the single-executable application preparation blob.\nThe addon can then be loaded in the injected main script by writing the asset\nto a temporary file and loading it with process.dlopen().

\n
{\n  \"main\": \"/path/to/bundled/script.js\",\n  \"output\": \"/path/to/write/the/generated/executable\",\n  \"assets\": {\n    \"myaddon.node\": \"/path/to/myaddon/build/Release/myaddon.node\"\n  }\n}\n
\n
// script.js\nconst fs = require('node:fs');\nconst os = require('node:os');\nconst path = require('node:path');\nconst { getRawAsset } = require('node:sea');\nconst addonPath = path.join(os.tmpdir(), 'myaddon.node');\nfs.writeFileSync(addonPath, new Uint8Array(getRawAsset('myaddon.node')));\nconst myaddon = { exports: {} };\nprocess.dlopen(myaddon, addonPath);\nconsole.log(myaddon.exports);\nfs.rmSync(addonPath);\n
\n

Known caveat: if the single-executable application is produced by postject running on a Linux arm64 docker container,\nthe produced ELF binary does not have the correct hash table to load the addons and\nwill crash on process.dlopen(). Build the single-executable application on other platforms, or at least on\na non-container Linux arm64 environment to work around this issue.

", "displayName": "Using native addons in the injected main script" } ], "displayName": "In the injected main script" }, { "textRaw": "Notes", "name": "notes", "type": "module", "modules": [ { "textRaw": "Single executable application creation process", "name": "single_executable_application_creation_process", "type": "module", "desc": "

The process documented here is subject to change.

", "modules": [ { "textRaw": "1. Generating single executable preparation blobs", "name": "1._generating_single_executable_preparation_blobs", "type": "module", "desc": "

To build a single executable application, Node.js would first generate a blob\nthat contains all the necessary information to run the bundled script.\nWhen using --build-sea, this step is done internally along with the injection.

", "modules": [ { "textRaw": "Dumping the preparation blob to disk", "name": "dumping_the_preparation_blob_to_disk", "type": "module", "desc": "

Before --build-sea was introduced, an older workflow was introduced to write the\npreparation blob to disk for injection by external tools. This can still\nbe used for verification purposes.

\n

To dump the preparation blob to disk for verification, use --experimental-sea-config.\nThis writes a file that can be injected into a Node.js binary using tools like postject.

\n

The configuration is similar to that of --build-sea, except that the\noutput field specifies the path to write the generated blob file instead of\nthe final executable.

\n
{\n  \"main\": \"/path/to/bundled/script.js\",\n  // Instead of the final executable, this is the path to write the blob.\n  \"output\": \"/path/to/write/the/generated/blob.blob\"\n}\n
", "displayName": "Dumping the preparation blob to disk" } ], "displayName": "1. Generating single executable preparation blobs" }, { "textRaw": "2. Injecting the preparation blob into the `node` binary", "name": "2._injecting_the_preparation_blob_into_the_`node`_binary", "type": "module", "desc": "

To complete the creation of a single executable application, the generated blob\nneeds to be injected into a copy of the node binary, as documented below.

\n

When using --build-sea, this step is done internally along with the blob generation.

\n\n

Then, the SEA building process searches the binary for the\nNODE_SEA_FUSE_fce680ab2cc467b6e072b8b5df1996b2:0 fuse string and flip the\nlast character to 1 to indicate that a resource has been injected.

", "modules": [ { "textRaw": "Injecting the preparation blob manually", "name": "injecting_the_preparation_blob_manually", "type": "module", "desc": "

Before --build-sea was introduced, an older workflow was introduced to allow\nexternal tools to inject the generated blob into a copy of the node binary.

\n

For example, with postject:

\n
    \n
  1. \n

    Create a copy of the node executable and name it according to your needs:

    \n
      \n
    • On systems other than Windows:
    • \n
    \n
    cp $(command -v node) hello\n
    \n
      \n
    • On Windows:
    • \n
    \n
    node -e \"require('fs').copyFileSync(process.execPath, 'hello.exe')\"\n
    \n

    The .exe extension is necessary.

    \n
  2. \n
  3. \n

    Remove the signature of the binary (macOS and Windows only):

    \n
      \n
    • On macOS:
    • \n
    \n
    codesign --remove-signature hello\n
    \n
      \n
    • On Windows (optional):
    • \n
    \n

    signtool can be used from the installed Windows SDK. If this step is\nskipped, ignore any signature-related warning from postject.

    \n
    signtool remove /s hello.exe\n
    \n
  4. \n
  5. \n

    Inject the blob into the copied binary by running postject with\nthe following options:

    \n
      \n
    • hello / hello.exe - The name of the copy of the node executable\ncreated in step 4.
    • \n
    • NODE_SEA_BLOB - The name of the resource / note / section in the binary\nwhere the contents of the blob will be stored.
    • \n
    • sea-prep.blob - The name of the blob created in step 1.
    • \n
    • --sentinel-fuse NODE_SEA_FUSE_fce680ab2cc467b6e072b8b5df1996b2 - The\nfuse used by the Node.js project to detect if a file has been injected.
    • \n
    • --macho-segment-name NODE_SEA (only needed on macOS) - The name of the\nsegment in the binary where the contents of the blob will be\nstored.
    • \n
    \n

    To summarize, here is the required command for each platform:

    \n
      \n
    • \n

      On Linux:

      \n
      npx postject hello NODE_SEA_BLOB sea-prep.blob \\\n    --sentinel-fuse NODE_SEA_FUSE_fce680ab2cc467b6e072b8b5df1996b2\n
      \n
    • \n
    • \n

      On Windows - PowerShell:

      \n
      npx postject hello.exe NODE_SEA_BLOB sea-prep.blob `\n    --sentinel-fuse NODE_SEA_FUSE_fce680ab2cc467b6e072b8b5df1996b2\n
      \n
    • \n
    • \n

      On Windows - Command Prompt:

      \n
      npx postject hello.exe NODE_SEA_BLOB sea-prep.blob ^\n    --sentinel-fuse NODE_SEA_FUSE_fce680ab2cc467b6e072b8b5df1996b2\n
      \n
    • \n
    • \n

      On macOS:

      \n
      npx postject hello NODE_SEA_BLOB sea-prep.blob \\\n    --sentinel-fuse NODE_SEA_FUSE_fce680ab2cc467b6e072b8b5df1996b2 \\\n    --macho-segment-name NODE_SEA\n
      \n
    • \n
    \n
  6. \n
", "displayName": "Injecting the preparation blob manually" } ], "displayName": "2. Injecting the preparation blob into the `node` binary" } ], "displayName": "Single executable application creation process" }, { "textRaw": "Platform support", "name": "platform_support", "type": "module", "desc": "

Single-executable support is tested regularly on CI only on the following\nplatforms:

\n\n

This is due to a lack of better tools to generate single-executables that can be\nused to test this feature on other platforms.

\n

Suggestions for other resource injection tools/workflows are welcomed. Please\nstart a discussion at https://github.com/nodejs/single-executable/discussions\nto help us document them.

", "displayName": "Platform support" } ], "displayName": "Notes" } ], "displayName": "Single executable applications" } ] }