@nextop-os/browser-node 0.0.15 → 0.0.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -4
- package/dist/chunk-XCKUTY7D.js +852 -0
- package/dist/chunk-XCKUTY7D.js.map +1 -0
- package/dist/electron-main/index.d.ts +14 -40
- package/dist/electron-main/index.js +487 -35
- package/dist/electron-main/index.js.map +1 -1
- package/dist/index.d.ts +110 -3
- package/dist/react/index.d.ts +6 -16
- package/dist/react/index.js +3 -5
- package/dist/workbench/index.d.ts +0 -1
- package/dist/workbench/index.js +1 -1
- package/package.json +7 -4
- package/dist/chunk-TLA56UW3.js +0 -554
- package/dist/chunk-TLA56UW3.js.map +0 -1
- package/dist/types-4cyQPaaT.d.ts +0 -110
package/README.md
CHANGED
|
@@ -5,11 +5,13 @@ Reusable Workbench Browser Node capability for Electron desktop hosts.
|
|
|
5
5
|
The package owns browser-node mechanics such as URL normalization, session
|
|
6
6
|
partitioning, renderer state, React surfaces, webview security, and Electron
|
|
7
7
|
guest lifecycle coordination. Product hosts own business bridge methods,
|
|
8
|
-
diagnostics policy, preview
|
|
8
|
+
diagnostics policy, loopback preview routing policy, and daemon or server
|
|
9
|
+
clients.
|
|
9
10
|
|
|
10
|
-
The
|
|
11
|
-
|
|
12
|
-
|
|
11
|
+
The package supports ordinary HTTP and HTTPS browser navigation by default. For
|
|
12
|
+
hosts that need local runtime previews, the Electron main integration can also
|
|
13
|
+
configure a package-owned loopback preview proxy through
|
|
14
|
+
`loopbackPreviewRouting`.
|
|
13
15
|
|
|
14
16
|
For Workbench hosts, the package also exposes a dock helper through
|
|
15
17
|
`@nextop-os/browser-node/workbench`. `createBrowserDockEntry(...)` wires the
|