@ulpi/browse 0.10.0 → 1.0.1

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 CHANGED
@@ -10,7 +10,7 @@ Headless browser CLI for AI coding agents. Persistent Chromium daemon via Playwr
10
10
  npm install -g @ulpi/browse
11
11
  ```
12
12
 
13
- Requires [Bun](https://bun.sh) runtime. Chromium is installed automatically via Playwright on first `npm install`.
13
+ Requires Node.js 18+. Chromium is installed automatically via Playwright on first `npm install`.
14
14
 
15
15
  ### Project Installation (local dependency)
16
16
 
@@ -25,9 +25,9 @@ Then use via `package.json` scripts or by invoking `browse` directly.
25
25
  ```bash
26
26
  git clone https://github.com/ulpi-io/browse
27
27
  cd browse
28
- bun install
29
- bun run src/cli.ts goto https://example.com # Dev mode
30
- bun run build # Build standalone binary
28
+ npm install
29
+ npx tsx src/cli.ts goto https://example.com # Dev mode
30
+ npm run build # Build bundle
31
31
  ```
32
32
 
33
33
  ## Quick Start
@@ -330,7 +330,7 @@ echo '[["goto","https://example.com"],["snapshot","-i"],["text"]]' | browse chai
330
330
  ```bash
331
331
  browse status # Server health report
332
332
  browse instances # List all running browse servers
333
- browse doctor # System check (Bun, Playwright, Chromium)
333
+ browse doctor # System check (Node, Playwright, Chromium)
334
334
  browse upgrade # Self-update via npm
335
335
  browse stop # Stop server
336
336
  browse restart # Restart server
@@ -579,7 +579,7 @@ browse uses **2.4x fewer tokens** than browser-use, **2.8x fewer** than agent-br
579
579
  | 10-action session | ~145,780 | **~11,388** |
580
580
  | Context consumed (200K) | **73%** | **6%** |
581
581
 
582
- Rerun: `bun run benchmark`
582
+ Rerun: `npm run benchmark`
583
583
 
584
584
  ## Changelog
585
585