@kimuson/claude-code-viewer 0.4.14 → 0.4.15
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 +9 -7
- package/dist/main.js +5 -3
- package/dist/main.js.map +2 -2
- package/dist/static/assets/{ProtectedRoute-BzJk3rey.js → ProtectedRoute-C5fRf9hh.js} +1 -1
- package/dist/static/assets/{eye-B5gmioqG.js → eye-BpyPAB62.js} +1 -1
- package/dist/static/assets/{index-CD2UAYAO.js → index-CGQpot94.js} +1 -1
- package/dist/static/assets/{index-BmfDiIO7.js → index-D07oc57n.js} +1 -1
- package/dist/static/assets/{index-Bnpk63z-.js → index-DZukx-uT.js} +3 -3
- package/dist/static/assets/{label-CZmxYtll.js → label-BhzS1w7s.js} +1 -1
- package/dist/static/assets/{login-zJ8NgNeJ.js → login-DpxCwKVk.js} +1 -1
- package/dist/static/assets/{session-17BtrmxA.js → session-CEMQzyS6.js} +1 -1
- package/dist/static/assets/{session-DXbcjdEx.js → session-DmyweLUZ.js} +2 -2
- package/dist/static/index.html +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,9 +4,11 @@
|
|
|
4
4
|
[](https://github.com/d-kimuson/claude-code-viewer/actions/workflows/ci.yml)
|
|
5
5
|
[](https://github.com/d-kimuson/claude-code-viewer/releases)
|
|
6
6
|
|
|
7
|
+
<img height="auto" width="50%" alt="ccv-logo" src="https://github.com/user-attachments/assets/0e092b2b-6acd-4380-b924-eed7a28acd69" />
|
|
8
|
+
|
|
7
9
|
A full-featured web-based Claude Code client that provides complete interactive functionality for managing Claude Code projects. Start new conversations, resume existing sessions, monitor running tasks in real-time, and browse your conversation history—all through a modern web interface.
|
|
8
10
|
|
|
9
|
-
|
|
11
|
+
https://github.com/user-attachments/assets/090d4806-163f-4bac-972a-002c7433145e
|
|
10
12
|
|
|
11
13
|
## Introduction
|
|
12
14
|
|
|
@@ -32,14 +34,14 @@ Claude Code Viewer is a web-based Claude Code client focused on **comprehensive
|
|
|
32
34
|
| Push Changes | Push committed changes directly from the Git Diff Viewer. Supports both separate push operations and combined commit-and-push workflows for streamlined deployment |
|
|
33
35
|
| MCP Server Viewer | View MCP server configurations directly in the session sidebar. Lists all configured servers with their names and commands, with real-time reload capability |
|
|
34
36
|
| System Information | Monitor Claude Code and Claude Code Viewer versions, feature compatibility, and system status |
|
|
35
|
-
| Multi-language Support | Full internationalization support with English and
|
|
37
|
+
| Multi-language Support | Full internationalization support with English, Japanese, and Simplified Chinese language options |
|
|
36
38
|
|
|
37
39
|
## Screenshots
|
|
38
40
|
|
|
39
41
|
| Feature | Capture |
|
|
40
42
|
| --- | --- |
|
|
41
|
-
| BasicChat (Desktop) |  |  |  |
|
|
44
|
+
| BasicChat (Mobile) |  |
|
|
43
45
|
| CommandCompletion |  |
|
|
44
46
|
| FileCompletion |  |
|
|
45
47
|
| Diff Viewer |  |
|
|
@@ -146,13 +148,13 @@ Settings can be configured from the sidebar in Claude Code Viewer.
|
|
|
146
148
|
| Permission Mode | Ask permission | Controls the approval logic when Claude Code requests tool invocations. By default, users approve requests through the UI. This feature requires Claude Code v1.0.82 or later; earlier versions automatically approve regardless of this setting. |
|
|
147
149
|
| Theme | System | Toggles between Dark Mode and Light Mode. Default follows system settings. |
|
|
148
150
|
| Notifications | None | Enables sound notifications when running session processes complete. Choose from multiple notification sounds with test playback functionality. |
|
|
149
|
-
| Language | System | Interface language selection. Supports English and
|
|
151
|
+
| Language | System | Interface language selection. Supports English, Japanese, and Simplified Chinese with automatic system detection. |
|
|
150
152
|
|
|
151
153
|
## Internationalization (i18n)
|
|
152
154
|
|
|
153
|
-
Claude Code Viewer currently supports **English** and **
|
|
155
|
+
Claude Code Viewer currently supports **English**, **Japanese**, and **Simplified Chinese (简体中文)**. Adding new languages is straightforward—simply add a new `messages.json` file for your locale (see [src/i18n/locales/](./src/i18n/locales/) for examples).
|
|
154
156
|
|
|
155
|
-
|
|
157
|
+
If you'd like support for your language, please open an issue—we'll add it quickly!
|
|
156
158
|
|
|
157
159
|
## Alternatives & Differentiation
|
|
158
160
|
|
package/dist/main.js
CHANGED
|
@@ -6439,7 +6439,7 @@ import { z as z28 } from "zod";
|
|
|
6439
6439
|
// package.json
|
|
6440
6440
|
var package_default = {
|
|
6441
6441
|
name: "@kimuson/claude-code-viewer",
|
|
6442
|
-
version: "0.4.
|
|
6442
|
+
version: "0.4.15",
|
|
6443
6443
|
type: "module",
|
|
6444
6444
|
license: "MIT",
|
|
6445
6445
|
repository: {
|
|
@@ -7267,13 +7267,15 @@ var port = isDevelopment ? (
|
|
|
7267
7267
|
// biome-ignore lint/style/noProcessEnv: allow only here
|
|
7268
7268
|
process.env.PORT ?? "3000"
|
|
7269
7269
|
);
|
|
7270
|
+
var hostname = process.env.HOSTNAME ?? "localhost";
|
|
7270
7271
|
serve(
|
|
7271
7272
|
{
|
|
7272
7273
|
fetch: honoApp.fetch,
|
|
7273
|
-
port: parseInt(port, 10)
|
|
7274
|
+
port: parseInt(port, 10),
|
|
7275
|
+
hostname
|
|
7274
7276
|
},
|
|
7275
7277
|
(info) => {
|
|
7276
|
-
console.log(`Server is running on http
|
|
7278
|
+
console.log(`Server is running on http://${info.address}:${info.port}`);
|
|
7277
7279
|
}
|
|
7278
7280
|
);
|
|
7279
7281
|
//# sourceMappingURL=main.js.map
|