@zixt/host 0.0.108 → 0.0.110

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.
Files changed (3) hide show
  1. package/README.md +7 -2
  2. package/dist/index.js +696 -127
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -86,8 +86,13 @@ Run `zixt-host --help` for logging flags.
86
86
 
87
87
  ## Teammate browsing
88
88
 
89
- If your teammates use the live browser, install the pinned Chromium once:
89
+ On first start, Zixt checks for its exact Chromium revision and downloads it
90
+ automatically when needed. If that download fails, run the matching installer
91
+ as the same OS user that runs Zixt:
90
92
 
91
93
  ```bash
92
- npx playwright-core install chromium
94
+ npx -y playwright-core@1.61.1 install chromium
93
95
  ```
96
+
97
+ On Windows, use `npx.cmd` instead of `npx`; this works from Command Prompt and
98
+ from PowerShell even when its execution policy blocks npm's `.ps1` shim.