diff --git a/markdown/Native Messaging: Finally Bringing P2P to the Modern Browser.md b/markdown/Native Messaging: Finally Bringing P2P to the Modern Browser.md index 7c69970..77eb921 100644 --- a/markdown/Native Messaging: Finally Bringing P2P to the Modern Browser.md +++ b/markdown/Native Messaging: Finally Bringing P2P to the Modern Browser.md @@ -506,7 +506,9 @@ The native host runs on [bare](https://bare.pears.com/), a minimal JavaScript ru Bare provides only the essential primitives: process management, file system access, networking, and a hyperloader module system. This gives us full, unmodified compatibility with the entire Hyperswarm ecosystem (Hyperbee, Hyperdrive, Hypercore, Autobase, etc.) using standard npm packages. Dependencies are declared in `package.json` and resolved automatically; the installer simply downloads Bare if needed. -**Currently the project does not build the native host into a single binary.** However, Bare makes this straightforward. Packaging everything into one standalone executable would simplify the installation process even further, completely remove the need for Node.js (or even a separate Bare download), and significantly reduce the line count and complexity of the installer scripts — delivering a true single-file experience across Windows, macOS, and Linux. +**Currently the project does not build the native host into a single binary.** + +However, Bare makes this straightforward. Packaging everything into one standalone executable would simplify the installation process even further, completely remove the need for Node.js (or even a separate Bare download), and significantly reduce the line count and complexity of the installer scripts — delivering a true single-file experience across Windows, macOS, and Linux. ### The Modules That Make It Work