claude_stream_viewer 1.0.12 → 1.0.13
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 +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@ Pretty-prints [Claude Code](https://claude.com/claude-code) `stream-json` events
|
|
|
12
12
|
```bash
|
|
13
13
|
npm install -g claude_stream_viewer
|
|
14
14
|
# or run on demand without installing
|
|
15
|
-
npx claude_stream_viewer
|
|
15
|
+
npx claude_stream_viewer@latest
|
|
16
16
|
```
|
|
17
17
|
|
|
18
18
|
## Usage
|
|
@@ -22,7 +22,7 @@ Pipe any source of stream-json events into the viewer:
|
|
|
22
22
|
```bash
|
|
23
23
|
claude --output-format stream-json --verbose --include-partial-messages \
|
|
24
24
|
--permission-mode auto -p "explain quantum computing like I'm 5" \
|
|
25
|
-
| npx claude_stream_viewer
|
|
25
|
+
| npx claude_stream_viewer@latest
|
|
26
26
|
```
|
|
27
27
|
|
|
28
28
|
The viewer reads one JSON event per line from stdin and writes a colorized, human-readable rendering to stdout. It exits when stdin closes, printing `[stream ended]`.
|
package/package.json
CHANGED