@teddysc/claude-run 0.3.0 → 0.3.2

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.
@@ -0,0 +1,22 @@
1
+
2
+ The MIT License (MIT)
3
+ Copyright (c) 2026 Teddy Xinyuan Chen
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
18
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
19
+ DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
20
+ OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
21
+ OR OTHER DEALINGS IN THE SOFTWARE.
22
+
package/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  Browse your Claude Code conversation history in a beautiful web UI
6
6
 
7
- [![npm version](https://img.shields.io/npm/v/claude-run.svg)](https://www.npmjs.com/package/claude-run)
7
+ [![npm version](https://img.shields.io/npm/v/@teddysc/claude-run.svg)](https://www.npmjs.com/package/@teddysc/claude-run)
8
8
  [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
9
9
 
10
10
  <img src=".github/claude-run.gif" alt="Claude Run Demo" width="800" />
@@ -13,10 +13,12 @@ Browse your Claude Code conversation history in a beautiful web UI
13
13
 
14
14
  <br />
15
15
 
16
+ > This is a fork of [kamranahmedse/claude-run](https://github.com/kamranahmedse/claude-run) that adds the ability to restrict server exposure to localhost only (default: 127.0.0.1).
17
+
16
18
  Run the project simply by executing
17
19
 
18
20
  ```bash
19
- npx claude-run
21
+ bunx @teddysc/claude-run
20
22
  ```
21
23
 
22
24
  The browser will open automatically at http://localhost:12001.
@@ -33,10 +35,10 @@ The browser will open automatically at http://localhost:12001.
33
35
 
34
36
  ## Usage
35
37
 
36
- Install globally via npm:
38
+ Install globally via bun:
37
39
 
38
40
  ```bash
39
- npm install -g claude-run
41
+ bun install -g @teddysc/claude-run
40
42
  ```
41
43
 
42
44
  Then run it from any directory:
@@ -51,11 +53,12 @@ The browser will open automatically at http://localhost:12001, showing all your
51
53
  claude-run [options]
52
54
 
53
55
  Options:
54
- -V, --version Show version number
55
- -p, --port <number> Port to listen on (default: 12001)
56
- -d, --dir <path> Claude directory (default: ~/.claude)
57
- --no-open Do not open browser automatically
58
- -h, --help Show help
56
+ -V, --version Show version number
57
+ -p, --port <number> Port to listen on (default: 12001)
58
+ -H, --host <address> Host address to listen on (default: 127.0.0.1)
59
+ -d, --dir <path> Claude directory (default: ~/.claude)
60
+ --no-open Do not open browser automatically
61
+ -h, --help Show help
59
62
  ```
60
63
 
61
64
  ## How It Works
@@ -82,13 +85,13 @@ git clone https://github.com/kamranahmedse/claude-run.git
82
85
  cd claude-run
83
86
 
84
87
  # Install dependencies
85
- pnpm install
88
+ bun install
86
89
 
87
90
  # Start development servers
88
- pnpm dev
91
+ bun run dev
89
92
 
90
93
  # Build for production
91
- pnpm build
94
+ bun run build
92
95
  ```
93
96
 
94
97
  ## License
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teddysc/claude-run",
3
- "version": "0.3.0",
3
+ "version": "0.3.2",
4
4
  "description": "A beautiful web UI for browsing Claude Code conversation history",
5
5
  "type": "module",
6
6
  "bin": {