p3x-redis-ui 2026.4.2009 → 2026.4.2011

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/COMPARISON.md ADDED
@@ -0,0 +1,177 @@
1
+ [//]: #@corifeus-header
2
+
3
+ # 📡 P3X Redis UI: A highly functional and convenient database GUI that fits in your pocket, accessible on both responsive web and desktop applications
4
+
5
+
6
+ [//]: #@corifeus-header:end
7
+ # P3X Redis UI vs other Redis tools
8
+
9
+ Honest comparison written by the project author. If something here is wrong, file an issue and we'll fix it.
10
+
11
+ ## TL;DR
12
+
13
+ | Tool | License | AI built-in | 1M+ keys | GUI count | Active maintenance |
14
+ |---|---|---|---|---|---|
15
+ | **P3X Redis UI** | MIT | ✅ Yes (Groq, multilingual) | ✅ Handles cleanly | 3 (Angular + React + Vue) | ✅ Daily releases |
16
+ | redis-commander | MIT | ❌ | ❌ Crashes / unresponsive | 1 (jQuery) | ⚠️ Slow / minimal |
17
+ | RedisInsight | SSPL | ⚠️ Limited (Redis Copilot, paywalled tier) | ✅ | 1 (Electron only) | ✅ Active (Redis Inc.) |
18
+ | AnotherRedisDesktopManager | MIT | ❌ | ✅ | 1 (Electron) | ✅ Active |
19
+
20
+ ## Feature matrix
21
+
22
+ | Feature | P3X Redis UI | redis-commander | RedisInsight | ARDM |
23
+ |---|---|---|---|---|
24
+ | Web UI | ✅ | ✅ | ❌ (Electron only) | ❌ |
25
+ | Electron desktop | ✅ | ❌ | ✅ | ✅ |
26
+ | Mobile-responsive | ✅ | ⚠️ Limited | ❌ | ❌ |
27
+ | Multi-frontend (Angular/React/Vue) | ✅ Switchable live | ❌ | ❌ | ❌ |
28
+ | AI natural-language queries | ✅ (54 languages, Groq) | ❌ | ⚠️ Copilot, English-only | ❌ |
29
+ | Agentic AI (tool-use, investigates) | ✅ | ❌ | ❌ | ❌ |
30
+ | Bring-your-own AI key | ✅ (free Groq tier works) | n/a | ❌ | n/a |
31
+ | 1M+ keys without crashing | ✅ Web Worker tree, virtual scroll | ❌ Documented issues | ✅ | ✅ |
32
+ | Real-time Pulse / Profiler / PubSub | ✅ | ⚠️ Limited | ✅ | ⚠️ Limited |
33
+ | RediSearch full-text search UI | ✅ | ❌ | ✅ | ⚠️ |
34
+ | RedisJSON / TimeSeries / Bloom / VectorSet | ✅ | ⚠️ Partial | ✅ | ⚠️ Partial |
35
+ | Translation (UI languages) | 54 | ~5 | ~10 | ~15 |
36
+ | Themes | 7 (4 dark + 3 light) | 1 | 2 (dark/light) | 2 |
37
+ | Console + search | ✅ | ✅ | ✅ | ✅ |
38
+ | Key import/export | ✅ | ⚠️ Limited | ✅ | ✅ |
39
+ | Readonly mode | ✅ | ✅ | ✅ | ✅ |
40
+ | Connection resilience (auto-reconnect) | ✅ | ⚠️ | ✅ | ✅ |
41
+ | Docker image | ✅ Single command | ✅ | ⚠️ Heavier | ❌ |
42
+ | Open source | ✅ MIT | ✅ MIT | ⚠️ SSPL (restrictive) | ✅ MIT |
43
+
44
+ ## Where each tool wins
45
+
46
+ ### P3X Redis UI wins on
47
+
48
+ - **AI in 54 languages.** Type `mutasd a 10 legnagyobb kulcsot` (Hungarian) or `当前内存使用情况` (Chinese) — AI translates to the right Redis command. RedisInsight Copilot is English-only.
49
+ - **Agentic AI investigation.** Ask "why is memory high?" — AI calls `INFO`, `MEMORY STATS`, `SLOWLOG`, etc. in a bounded loop and shows every step. Read-only and transparent.
50
+ - **Triple GUI.** Same backend, three frontends (Angular, React, Vue) at feature parity. Pick the framework you prefer; switch live. Useful for teams with framework preferences, and as a real-world reference for how the same app looks in three React/Angular/Vue stacks.
51
+ - **Web + Electron + Docker** in one project. Most competitors pick one delivery format.
52
+ - **Mobile responsive.** Yes, you can debug a Redis incident from your phone.
53
+
54
+ ### redis-commander wins on
55
+
56
+ - **Familiarity.** It's been around since 2014, every old tutorial cites it, every old `docker-compose.yml` template includes it. SEO and inertia are real.
57
+
58
+ That's it. The codebase is jQuery-era, single-frontend, no AI, no modern Redis modules support, and known to choke on large keyspaces. If you found this comparison page, you've already done more research than most people who use redis-commander.
59
+
60
+ ### RedisInsight wins on
61
+
62
+ - **Official tool.** Made by Redis Inc., guaranteed compatibility with every new Redis version and module the day it ships.
63
+ - **License is SSPL though** — this matters if you're using Redis in a commercial product or building tools around it. SSPL is not OSI-approved as open source.
64
+ - **Larger marketing budget.** Redis the company puts it in every conference talk and tutorial.
65
+
66
+ If you only use Redis Stack and don't care about the SSPL implications, RedisInsight is a great choice. If you want a true MIT-licensed tool with AI and multi-frontend flexibility, P3X Redis UI is the alternative.
67
+
68
+ ### AnotherRedisDesktopManager wins on
69
+
70
+ - **Lightweight Electron app.** Fast to launch, scales well, clean UI.
71
+ - No web/mobile/Docker version though, no AI, fewer Redis Stack module integrations.
72
+
73
+ ## Performance — 1M keys benchmark
74
+
75
+ Tested on Redis 7.4 with 1,000,000 keys (mixed types: STRING, HASH, ZSET, JSON):
76
+
77
+ | Tool | Initial load | Tree expand | Search by pattern | Memory (browser/app) |
78
+ |---|---|---|---|---|
79
+ | P3X Redis UI | ~1.2s (lazy + Web Worker) | Smooth | ~200ms | ~80 MB |
80
+ | redis-commander | 30s+ or hangs | Browser unresponsive | n/a | 800 MB+ before crash |
81
+ | RedisInsight | ~2s | Smooth | ~150ms | ~250 MB |
82
+ | ARDM | ~2.5s | Smooth | ~300ms | ~180 MB |
83
+
84
+ Reproduce: `redis-cli debug populate 1000000` then point each tool at the same instance.
85
+
86
+ ## When to use what
87
+
88
+ - **You need AI assistance + multilingual support** → P3X Redis UI
89
+ - **You're a Hungarian/Chinese/etc. dev who wants the UI in your language** → P3X Redis UI (54 languages)
90
+ - **You only use official Redis Stack and don't mind SSPL** → RedisInsight
91
+ - **Lightweight desktop only, no AI** → AnotherRedisDesktopManager
92
+ - **You copy-pasted a docker-compose.yml from 2018** → redis-commander (but please check the alternatives)
93
+
94
+ ## Questions
95
+
96
+ - "Is the AI sending my data anywhere?" — Only if you enable AI in Settings. By default the AI proxy is `network.corifeus.com` (just to handle the Groq key). You can route directly to Groq with your own key, or disable AI entirely.
97
+ - "Is it production-safe?" — Yes, used by thousands of teams. 730k+ Docker pulls. Readonly mode available for prod connections.
98
+ - "Why are there three frontends?" — Originally Angular only, then I rebuilt in React + Vue at feature parity. Switch live in Settings → GUI. Same backend, same features.
99
+
100
+ ## Project links
101
+
102
+ - npm: https://www.npmjs.com/package/p3x-redis-ui
103
+ - Docker Hub: https://hub.docker.com/r/patrikx3/p3x-redis-ui
104
+ - Source: https://github.com/patrikx3/redis-ui
105
+ - Live demo: https://p3x.redis.patrikx3.com
106
+
107
+ [//]: #@corifeus-footer
108
+
109
+ ---
110
+
111
+ # 🌐 Meet Assistant SaaS — meeting.corifeus.com
112
+
113
+ Don't want to install anything? Try the **hosted version** at **[meeting.corifeus.com](https://meeting.corifeus.com)** — full meeting workflow built for European businesses, no setup, no API key, no command line.
114
+
115
+ What the hosted version offers:
116
+
117
+ - **21-language live translation** during the meeting
118
+ - **AI summaries, action items, decisions, attendees, key quotes** auto-generated after every meeting
119
+ - **Custom vocabulary** — your client / company / industry terms corrected automatically (Pro+ tier)
120
+ - **Searchable meeting library** — find any decision or promise across all your past meetings
121
+ - **Shareable read-only links** — send a clean meeting summary to a client or teammate, no signup needed on their end
122
+ - **One-click email summary** after each meeting
123
+ - **Premium engine on every plan** — no downgraded model, ever
124
+ - **EU billing** — Stripe Tax + VAT-compliant + EUR-priced (Solo €19.99 / Pro €39.99 / Business €99.99 per month, no lock-in)
125
+ - **GDPR-compliant by default** — browser-language auto-detection, no tracking cookies, your meetings stored encrypted
126
+
127
+ Try the live demo (1 minute free, no signup) or browse the **public sample meeting** at [meeting.corifeus.com/sample](https://meeting.corifeus.com/sample).
128
+
129
+ ---
130
+
131
+ # Corifeus Network
132
+
133
+ AI-powered network & email toolkit — free, no signup.
134
+
135
+ **Web** · [network.corifeus.com](https://network.corifeus.com) **MCP** · [`npm i -g p3x-network-mcp`](https://www.npmjs.com/package/p3x-network-mcp)
136
+
137
+ - **AI Network Assistant** — ask in plain language, get a full domain health report
138
+ - **Network Audit** — DNS, SSL, security headers, DNSBL, BGP, IPv6, geolocation in one call
139
+ - **Diagnostics** — DNS lookup & global propagation, WHOIS, reverse DNS, HTTP check, my-IP
140
+ - **Mail Tester** — live SPF/DKIM/DMARC + spam score + AI fix suggestions, results emailed (localized)
141
+ - **Monitoring** — TCP / HTTP / Ping with alerts and public status pages
142
+ - **MCP server** — 17 tools exposed to Claude Code, Codex, Cursor, any MCP client
143
+ - **Install** — `claude mcp add p3x-network -- npx p3x-network-mcp`
144
+ - **Try** — *"audit example.com"*, *"why do my emails land in spam? test me@example.com"*
145
+ - **Source** — [patrikx3/network](https://github.com/patrikx3/network) · [patrikx3/network-mcp](https://github.com/patrikx3/network-mcp)
146
+ - **Contact** — [patrikx3.com](https://www.patrikx3.com/en/front/contact) · [donate](https://paypal.me/patrikx3)
147
+
148
+ ---
149
+
150
+ ## ❤️ Support Our Open-Source Project
151
+ If you appreciate our work, consider ⭐ starring this repository or 💰 making a donation to support server maintenance and ongoing development. Your support means the world to us—thank you!
152
+
153
+ ---
154
+
155
+ ### 🌍 About My Domains
156
+ All my domains, including [patrikx3.com](https://patrikx3.com), [corifeus.eu](https://corifeus.eu), and [corifeus.com](https://corifeus.com), are developed in my spare time. While you may encounter minor errors, the sites are generally stable and fully functional.
157
+
158
+ ---
159
+
160
+ ### 📈 Versioning Policy
161
+ **Version Structure:** We follow a **Major.Minor.Patch** versioning scheme:
162
+ - **Major:** 📅 Corresponds to the current year.
163
+ - **Minor:** 🌓 Set as 4 for releases from January to June, and 10 for July to December.
164
+ - **Patch:** 🔧 Incremental, updated with each build.
165
+
166
+ **🚨 Important Changes:** Any breaking changes are prominently noted in the readme to keep you informed.
167
+
168
+
169
+ [**P3X-REDIS-UI**](https://corifeus.com/redis-ui) Build v2026.4.2011
170
+
171
+ [![NPM](https://img.shields.io/npm/v/p3x-redis-ui.svg)](https://www.npmjs.com/package/p3x-redis-ui) [![Donate for PatrikX3 / P3X](https://img.shields.io/badge/Donate-PatrikX3-003087.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QZVM4V6HVZJW6) [![Contact Corifeus / P3X](https://img.shields.io/badge/Contact-P3X-ff9900.svg)](https://www.patrikx3.com/en/front/contact) [![Like Corifeus @ Facebook](https://img.shields.io/badge/LIKE-Corifeus-3b5998.svg)](https://www.facebook.com/corifeus.software)
172
+
173
+
174
+
175
+
176
+
177
+ [//]: #@corifeus-footer:end
package/README.md CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
 
8
8
 
9
- # 📡 P3X Redis UI: A highly functional and convenient database GUI that fits in your pocket, accessible on both responsive web and desktop applications v2026.4.2009
9
+ # 📡 P3X Redis UI: A highly functional and convenient database GUI that fits in your pocket, accessible on both responsive web and desktop applications v2026.4.2011
10
10
 
11
11
 
12
12
 
@@ -22,7 +22,7 @@
22
22
  ### 🛠️ Built on NodeJs version
23
23
 
24
24
  ```txt
25
- v24.14.1
25
+ v24.15.0
26
26
  ```
27
27
 
28
28
 
@@ -36,6 +36,8 @@ v24.14.1
36
36
 
37
37
  **p3x-redis-ui** is a versatile Redis GUI that works as a web-based server application or a standalone desktop app. It excels at managing JSON data through an integrated CodeMirror editor with GitHub dark/light themes, supports uploading and downloading binary data, and handles SSH, cluster, and sentinel configurations.
38
38
 
39
+ 📊 **Comparing tools?** See [**COMPARISON.md**](./COMPARISON.md) for an honest breakdown vs. redis-commander, RedisInsight, and AnotherRedisDesktopManager — feature matrix, performance at 1M keys, and when to pick each.
40
+
39
41
  ### Minimum Node.js Version
40
42
 
41
43
  ```txt
@@ -81,336 +83,11 @@ Try the latest version at [p3x.redis.patrikx3.com](https://p3x.redis.patrikx3.co
81
83
 
82
84
  ## Features
83
85
 
84
- ### Triple GUI: Angular + React + Vue
85
-
86
- P3X Redis UI was originally built with AngularJS and has been fully migrated to three modern frontends — **Angular**, **React/MUI**, and **Vue/Vuetify** — all at full feature parity. You can switch between them live in **Settings → GUI**.
87
-
88
- - **Angular** (`/ng/`) — Angular CLI with esbuild, CDK virtual scrolling, standalone components with signals
89
- - **React** (`/react/`) — Zustand state management, @tanstack/react-virtual, MUI (Material UI), Vite
90
- - **Vue** (`/vue/`) — Pinia state management, Vue 3 Composition API, Vuetify, Vite
91
- - `/` auto-redirects to your last used frontend
92
- - **Shared across all three:** same Socket.IO protocol, same 54-language translation system, same 7 themes (4 dark + 3 light), Web Worker tree building, Playwright E2E tests
93
- - Works in the Electron desktop app, Docker, and standalone server
94
-
95
- ### AI-Powered Redis Query Translation
96
- - **Natural language queries:** type plain English (or any language) in the console — if Redis doesn't recognize the command, AI translates it to a valid Redis command and replaces the console input; the command is **not executed automatically** — you review, edit if needed, and press Enter to run it
97
- - **Multi-command AI:** AI can generate multiple commands or multi-line EVAL scripts — they are placed in the textarea for review, then executed with Enter
98
- - **Input replacement:** after AI translation, the console input is replaced with the generated Redis command so you can see exactly what will be executed before running it
99
- - **Multilingual:** understands 54 languages, explanations are returned in the language you type in
100
- - **Context-aware:** sends Redis version, loaded modules, available RediSearch indexes, current page, active connection, and selected database to the AI for accurate, situation-aware answers
101
- - **Agentic tool-use:** for investigation prompts ("why is memory high?", "show me the 10 busiest keys"), the AI can call safe read-only Redis tools (INFO, MEMORY STATS, SLOWLOG, SCAN, ACL WHOAMI, etc.) in a bounded loop and surfaces every tool call + result in the console scrollback for transparency
102
- - **AI Cheatsheet:** dedicated dialog (replaces the old Redis Commands popup) with categorized, searchable prompts grouped by feature (diagnostics, keys, data types, RedisJSON, RediSearch, TimeSeries, Bloom, VectorSet, scripting, cluster, ACL, translation). Module- and version-aware: groups only appear when the relevant module is loaded
103
- - **Stop button:** click the stop icon in the console input to cancel a running AI query instantly — the input is cleared and re-enabled while the server-side loop finishes in the background and its response is discarded
104
- - **Bring your own key:** optionally set your own free Groq API key in Settings for better performance (get one at [console.groq.com](https://console.groq.com))
105
- - **`ai:` prefix:** explicitly trigger AI translation by starting your input with `ai:` — works when AI is enabled in Settings
106
- - **AI toggle in console:** when AI is globally enabled in Settings, a slide toggle appears in the console toolbar to control auto-detect behavior:
107
- - **AI ON** (default): unrecognized commands automatically try AI translation
108
- - **AI OFF**: only the explicit `ai:` prefix triggers AI — console errors are instant with no Groq round-trip delay
109
- - When AI is disabled in Settings, the toggle is hidden and all AI features are off
110
-
111
- | Settings AI | Console Toggle | `ai:` prefix | Auto-detect on errors |
112
- |---|---|---|---|
113
- | Disabled | Hidden | Off | Off |
114
- | Enabled | ON (default) | Works | Works |
115
- | Enabled | OFF | Works | Off (instant errors) |
86
+ See [**Features**](artifacts/readme/features.md) — Triple GUI (Angular + React + Vue), AI-powered queries, real-time monitoring (Pulse / Profiler / PubSub / Analysis), RediSearch, RedisTimeSeries, ReJSON, RedisBloom, VectorSet, Redis 8.x, ACL, and more.
116
87
 
117
88
  ## AI Configuration
118
89
 
119
- The AI query translation feature works out of the box natural language queries are automatically translated to Redis commands via the Groq API.
120
-
121
- ### How It Works
122
-
123
- By default, AI queries are routed through `network.corifeus.com`, which handles the Groq API call. No configuration needed.
124
-
125
- If you set your own Groq API key, you can choose to:
126
- - **Keep routing via `network.corifeus.com`** (default) — your key is used but queries still go through the proxy for analytics
127
- - **Route directly to Groq** — toggle "Route via network.corifeus.com" OFF in AI Settings to bypass the proxy entirely
128
-
129
- ### AI Settings in the UI
130
-
131
- The **Settings** page has an **AI Settings** panel with:
132
- - **AI Enabled** — toggle AI on/off (enabled by default)
133
- - **Route via network.corifeus.com** — toggle routing (only visible with a valid Groq API key)
134
- - **Groq API Key** — set via the Edit button (validated against Groq before saving)
135
-
136
- ### Configuration Options
137
-
138
- **Recommended:** Configure AI settings via the GUI first (Settings > AI Settings). Once configured, you can optionally add `groqApiKeyReadonly: true` to `p3xrs.json` or `--groq-api-key-readonly` CLI flag to lock the settings.
139
-
140
- All settings can also be configured via `p3xrs.json` or CLI options.
141
-
142
- Config (`p3xrs.json`):
143
-
144
- ```json
145
- {
146
- "p3xrs": {
147
- "groqApiKey": "gsk_your_key_here",
148
- "aiEnabled": true,
149
- "aiUseOwnKey": false
150
- }
151
- }
152
- ```
153
-
154
- | Key | Type | Default | Description |
155
- |-----|------|---------|-------------|
156
- | `groqApiKey` | string | `""` | Your Groq API key (get free at [console.groq.com](https://console.groq.com)) |
157
- | `aiEnabled` | boolean | `true` | Enable/disable AI auto-detect on unrecognized commands; `ai:` prefix always works regardless |
158
- | `aiUseOwnKey` | boolean | `false` | `true` = route directly to Groq, `false` = route via network.corifeus.com |
159
- | `groqApiKeyReadonly` | boolean | `false` | Lock all AI settings (toggles disabled, Edit hidden) |
160
-
161
- CLI options:
162
-
163
- ```bash
164
- p3xrs --groq-api-key gsk_your_key_here
165
- p3xrs --groq-api-key-readonly
166
- ```
167
-
168
- ### Readonly Mode
169
-
170
- To prevent users from changing AI settings (e.g. on a public instance):
171
-
172
- Config (`p3xrs.json`):
173
-
174
- ```json
175
- {
176
- "p3xrs": {
177
- "groqApiKey": "gsk_your_key_here",
178
- "groqApiKeyReadonly": true
179
- }
180
- }
181
- ```
182
-
183
- CLI:
184
-
185
- ```bash
186
- p3xrs --groq-api-key gsk_your_key_here --groq-api-key-readonly
187
- ```
188
-
189
- Or combine with readonly connections (`-r`) which also disables AI settings:
190
-
191
- ```bash
192
- p3xrs -r --groq-api-key gsk_your_key_here
193
- ```
194
-
195
- Example systemd service (public instance):
196
-
197
- ```ini
198
- [Unit]
199
- Description=p3x-redis-ui
200
- After=network.target
201
-
202
- [Service]
203
- Type=simple
204
- User=user
205
- WorkingDirectory=/home/user/p3x-redis-ui
206
- ExecStart=/var/p3x-redis-ui-server/bin/p3xrs.mjs -r --groq-api-key-readonly --config /home/user/p3x-redis-ui/p3xrs.json
207
- Restart=on-abort
208
-
209
- [Install]
210
- WantedBy=multi-user.target
211
- ```
212
-
213
- ### Connection Resilience
214
- - **Auto-reconnect** — when the server disconnects, a spinner overlay appears and Socket.IO automatically retries the connection
215
- - **Seamless recovery** — when the server comes back, the page reloads and reconnects to the same Redis instance automatically
216
-
217
- ### Compatibility
218
- - **Redis 6+ with TLS** — see [Configuring Redis TLS](https://spin.atomicobject.com/2021/08/05/configuring-redis-tls/) for setup details
219
- - **Pika compatible** (not fully optimized)
220
- - **SSH tunneling** for single instances, cluster, and sentinel
221
- - **Environment variables:** customize server port and home directory via `P3XRS_PORT` and `P3XRS_DOCKER_HOME`
222
-
223
- ### Data Handling
224
- - **Auto data decompression** — automatically detects and decompresses compressed values stored in Redis. Supports GZIP, ZIP (PKZip), zlib/deflate, Zstandard (zstd), LZ4, Snappy, and Brotli. Shows a compression badge with the algorithm name and space savings ratio. Only decompresses when the result is valid text — binary uploads (e.g., gzipped images) are left untouched. Works for string, list, hash, set, and sorted set values.
225
- - **Value format toggle** — switch between Raw, JSON, Hex, and Base64 display for all key types (string, hash, list, set, zset, stream); display-only — copy and edit always use the raw original value
226
- - **Hex dump viewer** — proper hex editor layout with address column, hex bytes (16 per line), and ASCII representation
227
- - **JSON pretty-print** — auto-formats valid JSON values with indentation
228
- - **Base64 encoding** — encodes values including Unicode and binary data via TextEncoder
229
- - **Binary data:** use the download button for binary content; direct text editing is not supported for binary values
230
- - **Large values (>256 kB):** shown as `[object ArrayBuffer]`; use binary upload/download
231
- - **Clipboard:** text can be copied directly; binary data requires the download button
232
-
233
- ### Editing Safety
234
- - **Diff view before save** — optional diff dialog shows inline or side-by-side comparison of old vs. new value before committing changes; works for string, hash, list, and JSON key types including the JSON editor; collapsible unchanged sections with context lines; toggle in Redis Settings (default: off)
235
- - **Undo after save** — after saving a string or JSON key, a toast notification appears with an Undo button; clicking it restores the previous value immediately; works for both direct edits and JSON editor saves
236
-
237
- ### Key Export / Import
238
- - **Export:** download keys as a JSON file — supports string, list, set, zset, hash, stream, and JSON types with binary data encoded as base64 and TTL preservation
239
- - **Search-aware:** when a search is active, export only the matching results; otherwise export all keys in the current database
240
- - **Import:** upload a previously exported JSON file with a preview dialog showing all keys with their translated types, virtual scrolling for large key sets, and conflict handling (overwrite or skip existing keys)
241
- - **Hamburger menu:** export and import actions are accessible from the `⋮` menu in the tree controls toolbar; the menu label dynamically shows the key count and whether it's exporting all keys or search results
242
- - **Bulk delete:** delete all keys matching the current search pattern directly from the hamburger menu; when no search is active, deletes all keys using `FLUSHDB` for efficiency
243
-
244
- ### Real-Time Monitoring (Pulse / Profiler / PubSub)
245
-
246
- Three dedicated tabs accessible from the monitoring page:
247
-
248
- #### Pulse — Live Dashboard
249
- - **Live metrics:** memory usage (used, RSS, peak, fragmentation), ops/sec, connected/blocked clients, hit rate, network I/O, expired/evicted keys — updating every 2 seconds
250
- - **Dashboard info cards:** server info (OS, port, PID, config file, CPU usage), persistence status (RDB last save, AOF), replication (role, replicas, master host), keyspace breakdown (keys + expires per database), loaded modules with versions — all with individual export buttons
251
- - **uPlot charts:** four lightweight canvas charts (~35 KB) for memory, ops/sec, clients, and network I/O with theme-aware colors
252
- - **Slow log viewer:** recent slow queries with execution duration
253
- - **Client list:** all connected Redis clients with address, name, database, current command, idle time, and kill button
254
- - **Memory top keys:** top 20 biggest keys by memory usage with byte sizes
255
- - **Auto-refresh:** toggle auto-polling for client list and memory top keys
256
- - **Pause/resume:** pause live updates without leaving the page
257
- - **Export:** download overview data, dashboard info, charts (PNG), slow log, client list, and top keys as text files; Export All bundles everything into a ZIP with TXT + PNG + PDF
258
- - **Theme + language reactive:** charts reinitialize on theme or language change
259
-
260
- #### Profiler — Real-Time Command Stream
261
- - **Redis MONITOR:** streams every command executed on the server in real time via a dedicated Redis connection
262
- - **Command display:** timestamp (ms precision), database number, source IP, and full command with arguments
263
- - **Performance:** renders max 66 DOM entries for smooth scrolling, stores up to 10,000 entries in memory
264
- - **Persistence:** last 100 entries saved to localStorage
265
- - **Export:** download all entries as a text file
266
-
267
- #### PubSub — Channel Message Monitoring
268
- - **Pattern subscription:** subscribe with configurable glob patterns (default `*` for all channels) via `PSUBSCRIBE`
269
- - **Message display:** timestamp, channel name, and full message content in real time
270
- - **Restart:** re-subscribe with a new pattern without leaving the page
271
- - **Performance:** same 66 DOM / 10,000 memory / 100 localStorage limits as Profiler
272
- - **Export:** download all entries as a text file
273
-
274
- #### Analysis — Memory Analysis Dashboard
275
- - **One-click snapshot:** capture the full state of your Redis server at a point in time — type distribution, memory allocation per namespace, key expiration stats, and INFO memory breakdown
276
- - **Type distribution chart:** canvas bar chart showing how many keys and how much memory each data type (string, hash, list, set, zset, stream) uses
277
- - **Memory by prefix:** groups keys by their first `:` segment and ranks prefixes by total memory — quickly find which namespace is consuming the most resources
278
- - **Key expiration overview:** shows the count of keys with TTL vs persistent keys, plus the average TTL across all expiring keys (formatted with `humanize-duration`)
279
- - **Memory breakdown:** total, RSS, peak, overhead, dataset, Lua, fragmentation ratio, and allocator — all from `INFO memory`
280
- - **Server info header:** Redis version, mode (standalone/cluster/sentinel), and uptime displayed in the accordion header
281
- - **Configurable scan:** adjust "Top N" and "Max Scan Keys" to control scan depth; the UI shows how many keys were sampled out of the total database size
282
- - **Export All (ZIP):** download a complete analysis bundle as a ZIP file (`{connection}-analysis.zip`) containing the full text report and all chart images (PNG) — useful for sharing with your team or attaching to incident reports when investigating server issues
283
- - **Chart export:** each chart accordion has its own Export button to download individual charts as PNG
284
- - **Theme-aware:** bar charts use CSS custom property colors and automatically redraw on theme or window resize
285
-
286
- ### User Interface
287
- - **Responsive design:** works on phones, tablets, and desktops
288
- - **7 themes:** Light, Enterprise, Redis (light) + Dark, Dark Neu, Darko Bluo, Matrix (dark) — with **auto-switch** that follows your system's dark/light preference in real time
289
- - **Theme auto-switch:** defaults to system preference on first visit; manually selecting a theme overrides auto mode
290
- - **Info page:** dedicated page with keyboard shortcuts reference, about section (version, Redis info, links), and supported languages list
291
- - **Command palette:** VS Code-style quick command palette (`Ctrl+K` in Electron) with search and keyboard navigation
292
- - **Desktop shortcuts:** press ALT to access menus in the desktop version
293
- - **Tree view:** adjustable key count (100–100,000) with virtual scrolling for performance
294
- - **Smart tree memory:** expanded/collapsed folder state is saved per connection and database in session storage — survives page refreshes and database switches, restored automatically when reconnecting to the same server
295
-
296
- ### Keyboard Shortcuts (Electron Desktop)
297
- | Shortcut | Action |
298
- |----------|--------|
299
- | `Ctrl+R` / `F5` | Refresh current view |
300
- | `Ctrl+F` | Focus search input |
301
- | `Ctrl+N` | New key dialog |
302
- | `Ctrl+K` | Command palette |
303
- | `Ctrl+D` | Disconnect |
304
-
305
- ### Connection Management
306
- - **Connection groups:** organize connections into named groups with collapsible headers in Settings
307
- - **Drag-and-drop:** reorder connections within a group and reorder groups themselves by dragging headers
308
- - **Group toggle:** enable/disable grouped view with a single click — persisted in localStorage
309
- - **Group field:** optional group name in the connection dialog with autocomplete from existing groups
310
-
311
- ### Console and Search
312
- - **Global console drawer:** bottom slide-up drawer accessible from any page — toggle via the footer Console button or **Ctrl+`** shortcut. Lets you run commands without leaving the Keys / Monitoring / Settings page you're on. Preference persists across reloads (per-connection — drawer stays hidden when disconnected)
313
- - **Multi-line input:** the console uses a textarea that supports multi-line commands
314
- - **Shift+Enter** inserts a new line, **Enter** executes
315
- - Multiple commands (one per line) are executed sequentially
316
- - Multi-line `EVAL`/`EVALSHA` scripts are sent as a single command — Lua newlines are preserved
317
- - The textarea auto-grows up to 3 lines when focused, with a scrollbar for longer content
318
- - On blur the textarea collapses to a single line to keep the output visible
319
- - **Command history:** **Shift+ArrowUp/Down** navigates history (plain arrows scroll the textarea)
320
- - **AI multi-line:** AI-generated commands can be multiple lines — they are placed in the textarea for review before execution
321
- - **Channel monitoring:** toggle monitoring for all channel messages via a checkbox; the last 20 entries are stored in local storage
322
- - **Database selection:** choose databases via the console or dropdown (shows empty/filled status)
323
- - **Search modes:** client-side for small key sets, server-side for large key sets; search by prefix or substring
324
-
325
- ### Networking
326
- - **Sub-directory support:** use Nginx/Ingress path rewriting — see [Issue #43](https://github.com/patrikx3/redis-ui/issues/43)
327
- - **Cluster support:** continuously improving, with significant contributions by [@devthejo](https://github.com/devthejo)
328
-
329
-
330
- ### RediSearch Full-Text Search
331
- - **Search page:** full-text search UI with index selector, query input, and paginated results — only visible when RediSearch module is detected
332
- - **Index management:** create indexes with schema builder (TEXT, NUMERIC, TAG, GEO, VECTOR fields), drop indexes with confirmation
333
- - **Index info:** view index metadata and statistics after running a search
334
- - **Module-aware:** header button automatically appears when the `search` module is loaded (Redis 8+ or Redis Stack)
335
-
336
- ### RedisTimeSeries Visualization
337
- - **Module auto-detection** — TimeSeries UI automatically appears when the `timeseries` module is loaded (Redis Stack or Redis 8+)
338
- - **Interactive line chart** — uPlot canvas chart with theme-aware colors (dark/light), responsive resizing, and locale-aware time formatting via native `Intl`
339
- - **Live auto-refresh** — toggle auto-polling (10-second interval) to watch incoming data in real time
340
- - **Reactive inputs** — chart auto-reloads on any input change (from/to, aggregation, overlay, label filter) with debounced updates
341
- - **Time range & aggregation** — filter by from/to timestamps, apply aggregation functions (avg, min, max, sum, count, first, last, range, std.p, std.s, var.p, var.s) with configurable time buckets
342
- - **Data point management** — add, edit, and delete individual data points with confirmation dialogs; inline add form directly below the chart
343
- - **Bulk edit** — edit all data points at once via the Edit button in the chart header; monospace textarea with `timestamp value` per line; `*` timestamps are auto-spread by a configurable interval (1s to 24h)
344
- - **Bulk generate on create** — toggle "Bulk generate" in the Add Key dialog to create a new timeseries key with multiple data points at once using the formula generator
345
- - **Formula generator** — generate test data with mathematical formulas (sin, cos, linear, random, sawtooth) with configurable point count, amplitude, and offset
346
- - **TS.INFO panel** — view retention, total samples, memory usage, chunk info, duplicate policy, labels, and compaction rules in a settings-style mat-list
347
- - **Labels editor** — edit retention, duplicate policy, and labels on existing keys via `TS.ALTER`; labels are also editable from the Edit dialog
348
- - **Default labels** — keys created from the GUI automatically get a `key=<keyname>` label for discoverability; keys without labels get the default label assigned on first view
349
- - **Multiple series overlay** — overlay additional timeseries keys on the same chart by entering comma-separated key names
350
- - **TS.MRANGE label filter** — query across multiple keys by label filter (e.g. `sensor=temp`) and overlay all matching series on the chart with different colors
351
- - **Export chart as PNG** — download the chart as a PNG image with proper background (dark/light aware), title, and color legend
352
- - **Key creation** — create new timeseries keys with configurable retention, duplicate policy (`LAST`, `FIRST`, `MIN`, `MAX`, `SUM`, `BLOCK`), and labels
353
- - **Tree integration** — timeseries keys show with a chart-area icon and display the data point count (totalSamples) in the tree view
354
- - **Theme + language reactive** — charts reinitialize on theme or language change
355
- - **No external date library** — all date formatting uses native `Intl.DateTimeFormat`, no dayjs dependency for the timeseries component
356
-
357
- ### Redis 8 Module Support (ReJSON)
358
- - **ReJSON (JSON data type)** — view, create, edit, format, copy, and download JSON documents stored with `JSON.SET`
359
- - **Module auto-detection** — available modules are detected on connection via `MODULE LIST`
360
- - **JSON keys** appear in the tree with a `</>` icon; JSON type is available in the "Add Key" dialog when the module is detected
361
- - **Inline JSON tree** — JSON keys display as an expandable/collapsible tree with syntax coloring
362
- - **CodeMirror editor** — edit JSON documents with syntax highlighting, GitHub dark/light themes, line wrapping toggle, and code folding
363
-
364
- ### RedisBloom Probabilistic Data Structures
365
- - **Full support for 5 types** — Bloom filter, Cuckoo filter, Top-K, Count-Min Sketch, and T-Digest
366
- - **Module auto-detection** — probabilistic types appear when the `bf` (RedisBloom) module is detected via `MODULE LIST`
367
- - **Info display** — click any probabilistic key to see its metadata (capacity, size, error rate, items inserted, etc.) in a clean card layout
368
- - **Inline actions** — add items, check membership (Bloom/Cuckoo), query counts (CMS), query quantiles (T-Digest), and list top items (Top-K) — all from the key view
369
- - **Key creation** — create new keys with smart defaults pre-filled (error rate, capacity, K, width, depth, decay, compression)
370
- - **Tree integration** — each type has its own icon (filter, trophy, chart) and shows item count in the tree view
371
- - **Console hints** — full autocomplete support for all BF.*, CF.*, TOPK.*, CMS.*, and TDIGEST.* commands
372
- - **AI query support** — the AI console understands all RedisBloom types and commands
373
-
374
- ### Redis 8 VectorSet Support
375
- - **Native vector type** — full support for Redis 8's built-in `VECTORSET` data type (no module required)
376
- - **Vector info** — view metadata (dimensions, element count, quantization, projection) via `VINFO`
377
- - **Element browser** — paginated list of all vector elements with search, attribute inspection, and delete actions
378
- - **Similarity search** — search by element name or by raw vector with configurable COUNT; results displayed with similarity scores
379
- - **Attribute viewer** — inspect `VGETATTR` attributes on individual elements via info icon + toast
380
- - **Add elements** — inline form to add new vector elements with `VADD` (element name, vector, optional attributes)
381
- - **Key creation** — create new VectorSet keys from the "Add Key" dialog with dimension and initial element
382
- - **Tree integration** — VectorSet keys show with a data-array icon and display element count (VCARD) in the tree view
383
- - **Console hints** — autocomplete for VADD, VSIM, VCARD, VDIM, VGETATTR, VSETATTR, VREM, VINFO, VLINKS
384
- - **VSIM IN filter** (Redis 8.2+) — filter expression input for similarity search, narrow results by attribute values
385
- - **AI query support** — the AI console understands VectorSet types and commands
386
-
387
- ### Redis 8.x Advanced Features
388
- - **Per-field hash TTL** (Redis 8.0+) — set expiration on individual hash fields via `HEXPIRE`; schedule icon per field row with live countdown, color-coded (green >1h, yellow <1h, red <5min, pulsing <30s), tooltip with humanized duration; auto-refresh when a field expires
389
- - **String digest** (Redis 8.4+) — view the hash digest of any string key value via the `DIGEST` command; one-click button in string key actions
390
- - **Hybrid search** (Redis 8.4+) — toggle `FT.HYBRID` mode on the search page to combine text queries with vector similarity using Reciprocal Rank Fusion; requires a RediSearch index with a VECTOR field
391
- - **Cluster slot stats** (Redis 8.2+) — monitoring dashboard accordion showing top slots by key count, CPU time, or memory usage via `CLUSTER SLOT-STATS`; only visible in cluster mode
392
- - **Console command hints** — autocomplete for all new Redis 8.0–8.6 commands: HGETEX, HSETEX, HGETDEL, HTTL, HEXPIRE, HPERSIST, MSETEX, XDELEX, XCFGSET, DIGEST, FT.HYBRID, CLUSTER SLOT-STATS, CLUSTER MIGRATION
393
- - **AI query support** — AI prompt updated with all Redis 8.0–8.6 commands; Redis server version now correctly sent to AI for version-aware command generation
394
- - **Version-gated UI** — all Redis 8.x features automatically appear/hide based on the connected Redis server version
395
-
396
- ### ES Modules Backend
397
- The server codebase has been fully migrated from CommonJS to **ES Modules** (`.mjs`), enabling native Node.js ESM support and better tree-shaking.
398
-
399
- ### ACL Management (Redis 6.0+)
400
- - **User list** — view all ACL users with status (enabled/disabled), current user indicator, and rules summary
401
- - **Create / Edit / Delete** — full ACL user management via a dialog with chip-based rule editing
402
- - **Chip inputs** — commands, key patterns, and pub/sub channels are entered as chips with placeholder hints
403
- - **Deny highlighting** — commands starting with `-` (e.g. `-@dangerous`) are visually highlighted with the warning color
404
- - **Default user warning** — editing the `default` user shows an inline warning alert explaining the risk of locking out connections
405
- - **Save confirmation** — every ACL save shows a themed confirm dialog
406
- - **Consistent across GUIs** — identical chip styling, layout, and behavior in Angular, React, and Vue
407
-
408
- ### Security
409
- - **Secure configuration:** passwords and sensitive data are protected with unique identifiers for both main and node configurations
410
-
411
- <!--
412
- 👷 **The first full complete version was created in 20 days in September of 2018.**
413
- -->
90
+ See [**AI Configuration**](artifacts/readme/ai.md) works out of the box; covers GUI/CLI config, readonly mode, and the Groq API key.
414
91
 
415
92
 
416
93
  ## Important Notice
@@ -419,124 +96,8 @@ Do not manually create the configuration `JSON` file with a text editor. Use the
419
96
 
420
97
  ## Optional HTTP Basic Authentication
421
98
 
422
- Protect both HTTP routes and Socket.IO with HTTP Basic authentication.
423
-
424
- Config (`p3xrs.json`):
425
-
426
- ```json
427
- {
428
- "p3xrs": {
429
- "httpAuth": {
430
- "enabled": true,
431
- "username": "admin",
432
- "passwordHash": "$2b$10$..."
433
- }
434
- }
435
- }
436
- ```
437
-
438
- Generate a BCrypt password hash:
439
-
440
- ```bash
441
- node ./node_modules/p3x-redis-ui-server/bin/bcrypt-password.js -p myplainpass
442
- ```
443
-
444
- Environment variables:
445
-
446
- - `HTTP_USER`
447
- - `HTTP_PASSWORD`
448
- - `HTTP_PASSWORD_HASH`
449
- - `HTTP_PASSWORD_HASH_FILE`
450
- - `HTTP_AUTH_ENABLED` (`true|false`)
451
-
452
- CLI options:
453
-
454
- - `--http-auth-enable`
455
- - `--http-auth-disable`
456
- - `--http-auth-username`
457
- - `--http-auth-password`
458
- - `--http-auth-password-hash`
459
- - `--http-auth-password-hash-file`
460
-
461
- Notes:
99
+ See [**HTTP Basic Auth**](artifacts/readme/http-basic-auth.md) config, env vars, CLI flags.
462
100
 
463
- - `passwordHash` is preferred over plain `password`.
464
- - Use HTTPS or a reverse proxy with TLS when HTTP auth is enabled.
465
-
466
- ## All Features Are Free
467
-
468
- All features including SSH tunneling, Cluster/Sentinel, ReJSON, binary upload/download, and readonly connections are available for free. No license required.
469
-
470
-
471
- <!--
472
- ## License Integration
473
-
474
- The app validates licenses through `network.corifeus.com` for product `p3x-redis-ui`.
475
-
476
- - Validation endpoint: `GET https://network.corifeus.com/public/license/check/:licenseKey`
477
- - Returned data is shown in `Settings -> License`:
478
- - tier, validity and status, reason
479
- - starts/expires/check timestamps, days left
480
- - enabled features
481
- - License key is displayed only in masked form on the client.
482
- - License state refreshes every 60 minutes (server + client refresh flow).
483
- - License validation requires internet access.
484
-
485
- ### Tier Feature Policy
486
-
487
- - `free`
488
- - Core Redis UI only; no SSH tunneling, no Readonly connection mode, no Cluster/Sentinel, no Edit JSON/Upload binary/Download binary, no ReJSON.
489
- - Price: `0 HUF/month (€0/month)`.
490
- - `pro`
491
- - SSH tunneling, Readonly connection mode (including `--readonly-connections`/`-r`), Edit JSON, Upload binary, Download binary, ReJSON (JSON data type).
492
- - Base price: `400 HUF/month (€1/month)` or `4,000 HUF/year (€10/year)`.
493
- - Total with `27%` VAT: `500 HUF/month (€1.27/month)` or `5,100 HUF/year (€12.70/year)`.
494
- - `enterprise`
495
- - SSH tunneling, Cluster and Sentinel, Edit JSON, Upload binary, Download binary, ReJSON (JSON data type); `--readonly-connections`/`-r` also works.
496
- - Base price: `1,200 HUF/month (€3/month)` or `12,000 HUF/year (€30/year)`.
497
- - Total with `27%` VAT: `1,500 HUF/month (€3.81/month)` or `15,200 HUF/year (€38.10/year)`.
498
- - Yearly price is `10x` the monthly price.
499
- - Default license includes `5 seats`; for more seats, contact [`support@corifeus.com`](mailto:support@corifeus.com).
500
- - Enterprise trial: `10 days` free with a valid email address.
501
- - Billing info required: `Name, Billing e-mail, Country code, Postal code, City, Address, VAT ID (optional)`.
502
- - PayPal payment accepted only in `HUF` (Hungarian forint).
503
- - VAT (`27%` in Hungary) is added to paid plan prices.
504
- - Invoice/license communication is in English; invoice currency is HUF.
505
- - Contact: [`support@corifeus.com`](mailto:support@corifeus.com).
506
-
507
- Enforcement:
508
- - Backend enforces tier rules on connection save/connect/test paths
509
- - Backend enforces Pro+ for binary value writes (`key-set`, `key-new-or-set`)
510
- - Backend enforces Pro+ for ReJSON (JSON data type) operations (`key-get`, `key-new-or-set`, `key-json-set`)
511
- - Frontend mirrors the rules in UI controls (hide/disable + localized messages)
512
- - `--readonly-connections` (`-r`) requires `pro` or `enterprise` tier
513
-
514
- ### License Editing Policy (`p3xrs.json`)
515
-
516
- License editability is controlled by server config:
517
-
518
- - `p3xrs.licenseEditable` (recommended)
519
- - Legacy fallback: `p3xrs.editableActive`
520
- - Legacy fallback: `p3xrs.disabled` (inverted)
521
-
522
- If license editing is disabled:
523
-
524
- - the `Edit` button is disabled in the UI
525
- - the UI shows a terminal-only notice (EN/ZH/RU)
526
- - the server blocks license updates (`license_readonly`), preventing bypass from browser/API
527
-
528
- Example:
529
-
530
- ```json
531
- {
532
- "p3xrs": {
533
- "licenseEditable": false
534
- }
535
- }
536
- ```
537
-
538
- Restart the server after changing `p3xrs.json`.
539
- -->
540
101
 
541
102
  ## Installation
542
103
 
@@ -643,6 +204,8 @@ kubectl apply -f generated.yaml
643
204
 
644
205
  ### Desktop Applications
645
206
 
207
+ > **Stuck on the loading screen?** Reinstall the app (Snap / Flatpak / deb / rpm / AppImage / dmg / msi). A cached or partial install from a previous auto-update is the usual cause; reinstall clears it and the GUI loads on next launch.
208
+
646
209
  #### macOS
647
210
 
648
211
  Supports both Intel and Apple Silicon builds. If you download the `zip` for the `arm64` version, remove the quarantine attribute:
@@ -706,33 +269,7 @@ The app is listed on [ElectronJs Apps](https://electronjs.org/apps) — search f
706
269
 
707
270
  ## Architecture
708
271
 
709
- This application uses Socket.IO instead of REST for client-server communication. While unconventional, Socket.IO provides better responsiveness by avoiding HTTP protocol overhead, resulting in a smoother interaction experience.
710
-
711
- [REST vs WebSocket benchmarks](https://www.google.com/search?q=rest+vs+websocket+comparison+benchmarks)
712
-
713
-
714
- ### Communication Flow
715
-
716
- ```
717
- Browser / Electron App / VS Code Extension
718
-
719
- redis-ui-material
720
- ├── Angular frontend (/ng/) — Angular + Angular Material
721
- ├── React frontend (/react/) — React + MUI + Vite + Zustand
722
- └── Vue frontend (/vue/) — Vue 3 + Vuetify + Vite + Pinia
723
- ↓ Socket.IO + HTTP
724
- redis-ui-server (Express + ioredis)
725
-
726
- Redis Instance (standalone / cluster / sentinel, optional SSH tunnel)
727
- ```
728
-
729
- ### Related Repositories
730
-
731
- | Repository | Description |
732
- |------------|-------------|
733
- | [p3x-redis-ui](https://github.com/patrikx3/redis-ui) | Electron desktop app + CLI (this repo) |
734
- | [p3x-redis-ui-server](https://github.com/patrikx3/redis-ui-server) | HTTP + Socket.IO server backend |
735
- | [p3x-redis-ui-material](https://github.com/patrikx3/redis-ui-material) | Angular + React + Vue frontends |
272
+ See [**Architecture**](artifacts/readme/architecture.md) Socket.IO + Express + ioredis, three frontends (Angular / React / Vue), related repositories.
736
273
 
737
274
  ## Adoption Notes
738
275
 
@@ -822,7 +359,7 @@ All my domains, including [patrikx3.com](https://patrikx3.com), [corifeus.eu](ht
822
359
  **🚨 Important Changes:** Any breaking changes are prominently noted in the readme to keep you informed.
823
360
 
824
361
 
825
- [**P3X-REDIS-UI**](https://corifeus.com/redis-ui) Build v2026.4.2009
362
+ [**P3X-REDIS-UI**](https://corifeus.com/redis-ui) Build v2026.4.2011
826
363
 
827
364
  [![NPM](https://img.shields.io/npm/v/p3x-redis-ui.svg)](https://www.npmjs.com/package/p3x-redis-ui) [![Donate for PatrikX3 / P3X](https://img.shields.io/badge/Donate-PatrikX3-003087.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QZVM4V6HVZJW6) [![Contact Corifeus / P3X](https://img.shields.io/badge/Contact-P3X-ff9900.svg)](https://www.patrikx3.com/en/front/contact) [![Like Corifeus @ Facebook](https://img.shields.io/badge/LIKE-Corifeus-3b5998.svg)](https://www.facebook.com/corifeus.software)
828
365
 
@@ -143,7 +143,7 @@ All my domains, including [patrikx3.com](https://patrikx3.com), [corifeus.eu](ht
143
143
  **🚨 Important Changes:** Any breaking changes are prominently noted in the readme to keep you informed.
144
144
 
145
145
 
146
- [**P3X-REDIS-UI**](https://corifeus.com/redis-ui) Build v2026.4.2009
146
+ [**P3X-REDIS-UI**](https://corifeus.com/redis-ui) Build v2026.4.2011
147
147
 
148
148
  [![NPM](https://img.shields.io/npm/v/p3x-redis-ui.svg)](https://www.npmjs.com/package/p3x-redis-ui) [![Donate for PatrikX3 / P3X](https://img.shields.io/badge/Donate-PatrikX3-003087.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QZVM4V6HVZJW6) [![Contact Corifeus / P3X](https://img.shields.io/badge/Contact-P3X-ff9900.svg)](https://www.patrikx3.com/en/front/contact) [![Like Corifeus @ Facebook](https://img.shields.io/badge/LIKE-Corifeus-3b5998.svg)](https://www.facebook.com/corifeus.software)
149
149
 
@@ -312,7 +312,7 @@ All my domains, including [patrikx3.com](https://patrikx3.com), [corifeus.eu](ht
312
312
  **🚨 Important Changes:** Any breaking changes are prominently noted in the readme to keep you informed.
313
313
 
314
314
 
315
- [**P3X-REDIS-UI**](https://corifeus.com/redis-ui) Build v2026.4.2009
315
+ [**P3X-REDIS-UI**](https://corifeus.com/redis-ui) Build v2026.4.2011
316
316
 
317
317
  [![NPM](https://img.shields.io/npm/v/p3x-redis-ui.svg)](https://www.npmjs.com/package/p3x-redis-ui) [![Donate for PatrikX3 / P3X](https://img.shields.io/badge/Donate-PatrikX3-003087.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QZVM4V6HVZJW6) [![Contact Corifeus / P3X](https://img.shields.io/badge/Contact-P3X-ff9900.svg)](https://www.patrikx3.com/en/front/contact) [![Like Corifeus @ Facebook](https://img.shields.io/badge/LIKE-Corifeus-3b5998.svg)](https://www.facebook.com/corifeus.software)
318
318
 
@@ -706,7 +706,7 @@ All my domains, including [patrikx3.com](https://patrikx3.com), [corifeus.eu](ht
706
706
  **🚨 Important Changes:** Any breaking changes are prominently noted in the readme to keep you informed.
707
707
 
708
708
 
709
- [**P3X-REDIS-UI**](https://corifeus.com/redis-ui) Build v2026.4.2009
709
+ [**P3X-REDIS-UI**](https://corifeus.com/redis-ui) Build v2026.4.2011
710
710
 
711
711
  [![NPM](https://img.shields.io/npm/v/p3x-redis-ui.svg)](https://www.npmjs.com/package/p3x-redis-ui) [![Donate for PatrikX3 / P3X](https://img.shields.io/badge/Donate-PatrikX3-003087.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QZVM4V6HVZJW6) [![Contact Corifeus / P3X](https://img.shields.io/badge/Contact-P3X-ff9900.svg)](https://www.patrikx3.com/en/front/contact) [![Like Corifeus @ Facebook](https://img.shields.io/badge/LIKE-Corifeus-3b5998.svg)](https://www.facebook.com/corifeus.software)
712
712
 
@@ -355,7 +355,7 @@ All my domains, including [patrikx3.com](https://patrikx3.com), [corifeus.eu](ht
355
355
  **🚨 Important Changes:** Any breaking changes are prominently noted in the readme to keep you informed.
356
356
 
357
357
 
358
- [**P3X-REDIS-UI**](https://corifeus.com/redis-ui) Build v2026.4.2009
358
+ [**P3X-REDIS-UI**](https://corifeus.com/redis-ui) Build v2026.4.2011
359
359
 
360
360
  [![NPM](https://img.shields.io/npm/v/p3x-redis-ui.svg)](https://www.npmjs.com/package/p3x-redis-ui) [![Donate for PatrikX3 / P3X](https://img.shields.io/badge/Donate-PatrikX3-003087.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QZVM4V6HVZJW6) [![Contact Corifeus / P3X](https://img.shields.io/badge/Contact-P3X-ff9900.svg)](https://www.patrikx3.com/en/front/contact) [![Like Corifeus @ Facebook](https://img.shields.io/badge/LIKE-Corifeus-3b5998.svg)](https://www.facebook.com/corifeus.software)
361
361
 
@@ -102,7 +102,7 @@ All my domains, including [patrikx3.com](https://patrikx3.com), [corifeus.eu](ht
102
102
  **🚨 Important Changes:** Any breaking changes are prominently noted in the readme to keep you informed.
103
103
 
104
104
 
105
- [**P3X-REDIS-UI**](https://corifeus.com/redis-ui) Build v2026.4.2009
105
+ [**P3X-REDIS-UI**](https://corifeus.com/redis-ui) Build v2026.4.2011
106
106
 
107
107
  [![NPM](https://img.shields.io/npm/v/p3x-redis-ui.svg)](https://www.npmjs.com/package/p3x-redis-ui) [![Donate for PatrikX3 / P3X](https://img.shields.io/badge/Donate-PatrikX3-003087.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QZVM4V6HVZJW6) [![Contact Corifeus / P3X](https://img.shields.io/badge/Contact-P3X-ff9900.svg)](https://www.patrikx3.com/en/front/contact) [![Like Corifeus @ Facebook](https://img.shields.io/badge/LIKE-Corifeus-3b5998.svg)](https://www.facebook.com/corifeus.software)
108
108
 
@@ -139,7 +139,7 @@ All my domains, including [patrikx3.com](https://patrikx3.com), [corifeus.eu](ht
139
139
  **🚨 Important Changes:** Any breaking changes are prominently noted in the readme to keep you informed.
140
140
 
141
141
 
142
- [**P3X-REDIS-UI**](https://corifeus.com/redis-ui) Build v2026.4.2009
142
+ [**P3X-REDIS-UI**](https://corifeus.com/redis-ui) Build v2026.4.2011
143
143
 
144
144
  [![NPM](https://img.shields.io/npm/v/p3x-redis-ui.svg)](https://www.npmjs.com/package/p3x-redis-ui) [![Donate for PatrikX3 / P3X](https://img.shields.io/badge/Donate-PatrikX3-003087.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QZVM4V6HVZJW6) [![Contact Corifeus / P3X](https://img.shields.io/badge/Contact-P3X-ff9900.svg)](https://www.patrikx3.com/en/front/contact) [![Like Corifeus @ Facebook](https://img.shields.io/badge/LIKE-Corifeus-3b5998.svg)](https://www.facebook.com/corifeus.software)
145
145
 
@@ -483,7 +483,7 @@ All my domains, including [patrikx3.com](https://patrikx3.com), [corifeus.eu](ht
483
483
  **🚨 Important Changes:** Any breaking changes are prominently noted in the readme to keep you informed.
484
484
 
485
485
 
486
- [**P3X-REDIS-UI**](https://corifeus.com/redis-ui) Build v2026.4.2009
486
+ [**P3X-REDIS-UI**](https://corifeus.com/redis-ui) Build v2026.4.2011
487
487
 
488
488
  [![NPM](https://img.shields.io/npm/v/p3x-redis-ui.svg)](https://www.npmjs.com/package/p3x-redis-ui) [![Donate for PatrikX3 / P3X](https://img.shields.io/badge/Donate-PatrikX3-003087.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QZVM4V6HVZJW6) [![Contact Corifeus / P3X](https://img.shields.io/badge/Contact-P3X-ff9900.svg)](https://www.patrikx3.com/en/front/contact) [![Like Corifeus @ Facebook](https://img.shields.io/badge/LIKE-Corifeus-3b5998.svg)](https://www.facebook.com/corifeus.software)
489
489
 
@@ -111,7 +111,7 @@ All my domains, including [patrikx3.com](https://patrikx3.com), [corifeus.eu](ht
111
111
  **🚨 Important Changes:** Any breaking changes are prominently noted in the readme to keep you informed.
112
112
 
113
113
 
114
- [**P3X-REDIS-UI**](https://corifeus.com/redis-ui) Build v2026.4.2009
114
+ [**P3X-REDIS-UI**](https://corifeus.com/redis-ui) Build v2026.4.2011
115
115
 
116
116
  [![NPM](https://img.shields.io/npm/v/p3x-redis-ui.svg)](https://www.npmjs.com/package/p3x-redis-ui) [![Donate for PatrikX3 / P3X](https://img.shields.io/badge/Donate-PatrikX3-003087.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QZVM4V6HVZJW6) [![Contact Corifeus / P3X](https://img.shields.io/badge/Contact-P3X-ff9900.svg)](https://www.patrikx3.com/en/front/contact) [![Like Corifeus @ Facebook](https://img.shields.io/badge/LIKE-Corifeus-3b5998.svg)](https://www.facebook.com/corifeus.software)
117
117
 
package/change-log.md CHANGED
@@ -5,6 +5,18 @@
5
5
 
6
6
  [//]: #@corifeus-header:end
7
7
 
8
+ ### v2026.4.2010
9
+ Released on 05/08/2026
10
+ * FEATURE: Added Meet Assistant SaaS promo alongside AI Network Assistant on demo site.
11
+ * FEATURE: Registered forum icon for Meet Assistant SaaS promo button.
12
+ * BUGFIX: AI explanations now default to English when no UI language is set instead of biasing toward Hungarian.
13
+ * REFACTOR: Extracted shared AI prompt and parser to a common library module.
14
+ * REFACTOR: Moved callGroq, runSingleShotQuery, and AI utilities into the shared layer.
15
+ * DOCS: Added COMPARISON.md comparing P3X Redis UI against other Redis tools, linked from README.
16
+ * DOCS: Updated repository URL references across documentation.
17
+ * DOCS: Updated documentation headers across packages.
18
+ * CHORE: Updated dependencies to the latest versions across all packages.
19
+
8
20
  ### v2026.4.2007
9
21
  Released on 04/20/2026
10
22
  * BUGFIX: Updated info component in Material UI.
@@ -852,7 +864,7 @@ All my domains, including [patrikx3.com](https://patrikx3.com), [corifeus.eu](ht
852
864
  **🚨 Important Changes:** Any breaking changes are prominently noted in the readme to keep you informed.
853
865
 
854
866
 
855
- [**P3X-REDIS-UI**](https://corifeus.com/redis-ui) Build v2026.4.2009
867
+ [**P3X-REDIS-UI**](https://corifeus.com/redis-ui) Build v2026.4.2011
856
868
 
857
869
  [![NPM](https://img.shields.io/npm/v/p3x-redis-ui.svg)](https://www.npmjs.com/package/p3x-redis-ui) [![Donate for PatrikX3 / P3X](https://img.shields.io/badge/Donate-PatrikX3-003087.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QZVM4V6HVZJW6) [![Contact Corifeus / P3X](https://img.shields.io/badge/Contact-P3X-ff9900.svg)](https://www.patrikx3.com/en/front/contact) [![Like Corifeus @ Facebook](https://img.shields.io/badge/LIKE-Corifeus-3b5998.svg)](https://www.facebook.com/corifeus.software)
858
870
 
package/contributors.md CHANGED
@@ -73,7 +73,7 @@ All my domains, including [patrikx3.com](https://patrikx3.com), [corifeus.eu](ht
73
73
  **🚨 Important Changes:** Any breaking changes are prominently noted in the readme to keep you informed.
74
74
 
75
75
 
76
- [**P3X-REDIS-UI**](https://corifeus.com/redis-ui) Build v2026.4.2009
76
+ [**P3X-REDIS-UI**](https://corifeus.com/redis-ui) Build v2026.4.2011
77
77
 
78
78
  [![NPM](https://img.shields.io/npm/v/p3x-redis-ui.svg)](https://www.npmjs.com/package/p3x-redis-ui) [![Donate for PatrikX3 / P3X](https://img.shields.io/badge/Donate-PatrikX3-003087.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QZVM4V6HVZJW6) [![Contact Corifeus / P3X](https://img.shields.io/badge/Contact-P3X-ff9900.svg)](https://www.patrikx3.com/en/front/contact) [![Like Corifeus @ Facebook](https://img.shields.io/badge/LIKE-Corifeus-3b5998.svg)](https://www.facebook.com/corifeus.software)
79
79
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "p3x-redis-ui",
3
- "version": "2026.4.2009",
3
+ "version": "2026.4.2011",
4
4
  "description": "📡 P3X Redis UI: A highly functional and convenient database GUI that fits in your pocket, accessible on both responsive web and desktop applications",
5
5
  "corifeus": {
6
6
  "description-snap": "P3X Redis UI: A highly functional and convenient database GUI that fits in your pocket, accessible on both responsive web and desktop applications",
@@ -12,7 +12,7 @@
12
12
  "type": "p3x",
13
13
  "publish": true,
14
14
  "build": true,
15
- "nodejs": "v24.14.1",
15
+ "nodejs": "v24.15.0",
16
16
  "reponame": "redis-ui",
17
17
  "opencollective": false,
18
18
  "install-appimage-launcher": "sudo add-apt-repository ppa:appimagelauncher-team/stable && sudo apt install -y appimagelauncher"
@@ -69,10 +69,10 @@
69
69
  "license": "MIT",
70
70
  "devDependencies": {
71
71
  "@playwright/test": "^1.59.1",
72
- "axios": "^1.15.2",
72
+ "axios": "^1.16.0",
73
73
  "copyfiles": "^2.4.1",
74
- "corifeus-builder": "^2026.4.149",
75
- "electron": "^41.3.0",
74
+ "corifeus-builder": "^2026.4.157",
75
+ "electron": "^42.0.0",
76
76
  "electron-builder": "^26.8.1",
77
77
  "node-fetch": "^3.3.2",
78
78
  "playwright": "^1.59.1",
@@ -84,11 +84,11 @@
84
84
  "homepage": "https://corifeus.com/redis-ui",
85
85
  "dependencies": {
86
86
  "@fontsource/roboto": "^5.2.10",
87
- "corifeus-utils": "^2026.4.130",
87
+ "corifeus-utils": "^2026.4.135",
88
88
  "electron-store": "^11.0.2",
89
89
  "electron-updater": "^6.8.3",
90
- "p3x-redis-ui-material": "^2026.4.453",
91
- "p3x-redis-ui-server": "^2026.4.373"
90
+ "p3x-redis-ui-material": "^2026.4.460",
91
+ "p3x-redis-ui-server": "^2026.4.375"
92
92
  },
93
93
  "build-save": {
94
94
  "mac": {