redis-eye 0.2.0 → 0.2.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.ko.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  > `npx` 명령 한 줄로 Redis 데이터를 시각적으로 탐색·관리하는 경량 웹 GUI
4
4
 
5
- **[English README](./README.md)**
5
+ **[English README](https://github.com/smw0807/redis-eye/blob/main/README.md)**
6
6
 
7
7
  ---
8
8
 
@@ -14,13 +14,15 @@
14
14
  npx redis-eye
15
15
  ```
16
16
 
17
- 전역 설치 후 실행:
17
+ 전역 설치 후 실행 (반복 사용 시 권장):
18
18
 
19
19
  ```bash
20
20
  npm install -g redis-eye
21
21
  redis-eye
22
22
  ```
23
23
 
24
+ > **주의:** `npm install redis-eye` (`-g` 없이)는 로컬에만 설치되며 `redis-eye` 명령어를 PATH에 추가하지 않습니다. `npx` 또는 `-g` 옵션으로 설치하세요.
25
+
24
26
  실행하면 `http://127.0.0.1:<포트>` 주소로 브라우저가 자동으로 열립니다.
25
27
 
26
28
  ---
@@ -129,4 +131,4 @@ MIT
129
131
 
130
132
  ---
131
133
 
132
- **[English README →](./README.md)**
134
+ **[English README →](https://github.com/smw0807/redis-eye/blob/main/README.md)**
package/README.md CHANGED
@@ -2,25 +2,27 @@
2
2
 
3
3
  > Lightweight Redis GUI — explore and manage your Redis data with a single `npx` command.
4
4
 
5
- **[한국어 문서 보기](./README.ko.md)**
5
+ **[한국어 문서 보기](https://github.com/smw0807/redis-eye/blob/main/README.ko.md)**
6
6
 
7
7
  ---
8
8
 
9
9
  ## Quick Start
10
10
 
11
- No installation required:
11
+ No installation required — run directly with npx:
12
12
 
13
13
  ```bash
14
14
  npx redis-eye
15
15
  ```
16
16
 
17
- Or install globally:
17
+ Or install globally (recommended for repeated use):
18
18
 
19
19
  ```bash
20
20
  npm install -g redis-eye
21
21
  redis-eye
22
22
  ```
23
23
 
24
+ > **Note:** `npm install redis-eye` (without `-g`) installs locally and does not add `redis-eye` to your PATH. Use `npx` or install with `-g`.
25
+
24
26
  A browser window opens automatically at `http://127.0.0.1:<port>`.
25
27
 
26
28
  ---
@@ -131,4 +133,4 @@ MIT
131
133
 
132
134
  ---
133
135
 
134
- **[한국어 문서 보기 →](./README.ko.md)**
136
+ **[한국어 문서 보기 →](https://github.com/smw0807/redis-eye/blob/main/README.ko.md)**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "redis-eye",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Lightweight Redis GUI — explore your Redis data with a single npx command",
5
5
  "main": "server/index.js",
6
6
  "bin": {