@teddysc/claude-run 0.3.0 → 0.3.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 +15 -12
- package/package.json +1 -1
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
|
-
[](https://www.npmjs.com/package/claude-run)
|
|
7
|
+
[](https://www.npmjs.com/package/@teddysc/claude-run)
|
|
8
8
|
[](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
|
-
|
|
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
|
|
38
|
+
Install globally via bun:
|
|
37
39
|
|
|
38
40
|
```bash
|
|
39
|
-
|
|
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
|
|
55
|
-
-p, --port <number>
|
|
56
|
-
-
|
|
57
|
-
|
|
58
|
-
-
|
|
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
|
-
|
|
88
|
+
bun install
|
|
86
89
|
|
|
87
90
|
# Start development servers
|
|
88
|
-
|
|
91
|
+
bun run dev
|
|
89
92
|
|
|
90
93
|
# Build for production
|
|
91
|
-
|
|
94
|
+
bun run build
|
|
92
95
|
```
|
|
93
96
|
|
|
94
97
|
## License
|