p3x-redis-ui 2026.4.102

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.
Files changed (54) hide show
  1. package/.p3xrs-conns-example.json +208 -0
  2. package/.p3xrs-conns.json +152 -0
  3. package/AGENTS.md +68 -0
  4. package/Dockerfile +15 -0
  5. package/LICENSE +19 -0
  6. package/README.md +475 -0
  7. package/_config.yml +1 -0
  8. package/bin/p3x-redis.js +3 -0
  9. package/build.txt +3 -0
  10. package/change-log.2018.md +137 -0
  11. package/change-log.2019.md +306 -0
  12. package/change-log.2020.md +700 -0
  13. package/change-log.2021.md +349 -0
  14. package/change-log.2022.md +96 -0
  15. package/change-log.2023.md +133 -0
  16. package/change-log.2024.md +479 -0
  17. package/change-log.2025.md +107 -0
  18. package/change-log.md +79 -0
  19. package/contributors.md +67 -0
  20. package/docker-compose.yml +9 -0
  21. package/k8s/chart/Chart.yaml +4 -0
  22. package/k8s/chart/templates/configmap.yaml +47 -0
  23. package/k8s/chart/templates/deployment.yaml +38 -0
  24. package/k8s/chart/templates/ingress.yaml +49 -0
  25. package/k8s/chart/templates/service.yaml +20 -0
  26. package/k8s/chart/values.yaml +47 -0
  27. package/k8s/manifests/configmap.yaml +19 -0
  28. package/k8s/manifests/deployment.yaml +29 -0
  29. package/k8s/manifests/ingress.yaml +25 -0
  30. package/k8s/manifests/namespace.yaml +4 -0
  31. package/k8s/manifests/service.yaml +14 -0
  32. package/p3xrs.json +23 -0
  33. package/package.json +169 -0
  34. package/src/app.js +148 -0
  35. package/src/electron/global.js +47 -0
  36. package/src/electron/images/128x128.png +0 -0
  37. package/src/electron/images/256x256.png +0 -0
  38. package/src/electron/images/512x512.png +0 -0
  39. package/src/electron/images/redis.svg +26 -0
  40. package/src/electron/module/create/menu.js +268 -0
  41. package/src/electron/module/create/window.js +158 -0
  42. package/src/electron/window/main/angular/toast/index.js +28 -0
  43. package/src/electron/window/main/angular.js +19 -0
  44. package/src/electron/window/main/css/style.css +13 -0
  45. package/src/electron/window/main/index.html +35 -0
  46. package/src/electron/window/main/onload.js +227 -0
  47. package/src/electron/window/main/webview-placeholder.html +9 -0
  48. package/src/flathub/metainfo.xml +49 -0
  49. package/src/flathub/p3x-redis-ui.desktop +7 -0
  50. package/src/lib/relaunch.js +21 -0
  51. package/src/lib/set-language.js +9 -0
  52. package/src/strings/en/index.js +79 -0
  53. package/src/strings/ru/index.js +79 -0
  54. package/src/strings/zn/index.js +75 -0
@@ -0,0 +1,208 @@
1
+ {
2
+ "update": "2024-03-30T07:14:37.928Z",
3
+ "list": [
4
+ {
5
+ "id": "P3Xid5a0dfde8c710100089fc907b54ac0d",
6
+ "name": "localhost",
7
+ "host": "localhost",
8
+ "port": 6379,
9
+ "readonly": false,
10
+ "cluster": false,
11
+ "sentinel": false,
12
+ "nodes": [],
13
+ "tlsWithoutCert": false,
14
+ "ssh": false,
15
+ "sshPort": 22
16
+ },
17
+ {
18
+ "id": "P3Xida0d91ee8c71010000f522eeef7a348",
19
+ "name": "server prod",
20
+ "host": "secure",
21
+ "port": 6379,
22
+ "readonly": false,
23
+ "cluster": false,
24
+ "sentinel": false,
25
+ "nodes": [],
26
+ "ssh": false,
27
+ "sshPort": 22,
28
+ "password": "secure"
29
+ },
30
+ {
31
+ "id": "P3Xid86322ee8c71010008c337ccb2c67ef",
32
+ "name": "server test",
33
+ "host": "secure",
34
+ "port": 6380,
35
+ "readonly": false,
36
+ "cluster": false,
37
+ "sentinel": false,
38
+ "nodes": [],
39
+ "askAuth": false,
40
+ "ssh": false,
41
+ "sshPort": 22,
42
+ "password": "secure"
43
+ },
44
+ {
45
+ "id": "P3Xid2dd6106a981010008259e3d1f3a201",
46
+ "name": "server test with tls",
47
+ "host": "secure",
48
+ "password": "secure",
49
+ "port": 7379,
50
+ "readonly": false,
51
+ "askAuth": false,
52
+ "sentinel": false,
53
+ "cluster": false,
54
+ "nodes": [],
55
+ "ssh": false,
56
+ "sshPort": 22,
57
+ "tlsWithoutCert": false,
58
+ "tlsRejectUnauthorized": false,
59
+ "tlsCrt": "-----BEGIN CERTIFICATE-----secure-----END CERTIFICATE-----",
60
+ "tlsKey": "-----BEGIN PRIVATE KEY-----secure-----END PRIVATE KEY-----",
61
+ "tlsCa": "-----BEGIN CERTIFICATE-----secure-----END CERTIFICATE-----"
62
+ },
63
+ {
64
+ "id": "P3Xidf634827e881010008da44ae82969f5",
65
+ "name": "vpn redis",
66
+ "host": "secure",
67
+ "port": 6379,
68
+ "readonly": true,
69
+ "tlsWithoutCert": false,
70
+ "tlsRejectUnauthorized": true,
71
+ "cluster": false,
72
+ "nodes": [],
73
+ "ssh": false,
74
+ "sshPort": 22,
75
+ "sentinel": false
76
+ },
77
+ {
78
+ "id": "P3Xid3862da58e81010008b1bd28b2142e3",
79
+ "name": "sentinel",
80
+ "host": "secure",
81
+ "port": 26379,
82
+ "readonly": true,
83
+ "askAuth": false,
84
+ "tlsWithoutCert": false,
85
+ "tlsRejectUnauthorized": true,
86
+ "cluster": false,
87
+ "sentinel": true,
88
+ "nodes": [
89
+ {
90
+ "host": "secure",
91
+ "port": 26380,
92
+ "id": "P3Xid81e69c68e81010005182fd9e1d5261"
93
+ },
94
+ {
95
+ "host": "secure",
96
+ "port": 26381,
97
+ "id": "P3Xid62099c68e81010000cf739e167e6a6"
98
+ }
99
+ ],
100
+ "ssh": false,
101
+ "sshPort": 22,
102
+ "sentinelName": "sentinel"
103
+ },
104
+ {
105
+ "id": "P3Xid13512e98e8101000aac09572042541",
106
+ "name": "demona tunnel",
107
+ "host": "localhost",
108
+ "port": 6379,
109
+ "askAuth": false,
110
+ "readonly": true,
111
+ "tlsWithoutCert": false,
112
+ "tlsRejectUnauthorized": false,
113
+ "ssh": true,
114
+ "sshHost": "secure",
115
+ "sshPort": 22,
116
+ "sshUsername": "secure",
117
+ "cluster": false,
118
+ "sentinel": false,
119
+ "nodes": [],
120
+ "sshPassword": "",
121
+ "sshPrivateKey": "-----BEGIN RSA PRIVATE KEY-----secure-----END RSA PRIVATE KEY-----"
122
+ },
123
+ {
124
+ "name": "server test tunnel",
125
+ "host": "localhost",
126
+ "port": 6380,
127
+ "askAuth": false,
128
+ "id": "P3Xid1d5973b8e8101000430f568d12ecb5",
129
+ "tlsWithoutCert": false,
130
+ "tlsRejectUnauthorized": true,
131
+ "ssh": true,
132
+ "sshHost": "secure",
133
+ "sshPort": 22,
134
+ "sshUsername": "redis-ui",
135
+ "cluster": false,
136
+ "sentinel": false,
137
+ "nodes": [],
138
+ "password": "private",
139
+ "sshPrivateKey": "-----BEGIN OPENSSH PRIVATE KEY-----secure-----END OPENSSH PRIVATE KEY-----"
140
+ },
141
+ {
142
+ "name": "cluster",
143
+ "host": "localhost",
144
+ "port": 36379,
145
+ "askAuth": false,
146
+ "username": "",
147
+ "id": "P3Xid27bac4b8e8101000a4b8746ee66bc3",
148
+ "tlsWithoutCert": false,
149
+ "tlsRejectUnauthorized": false,
150
+ "ssh": false,
151
+ "sshPort": 22,
152
+ "cluster": true,
153
+ "sentinel": false,
154
+ "nodes": [
155
+ {
156
+ "host": "localhost",
157
+ "port": 36380,
158
+ "id": "P3Xid0af6c4b8e81010000e240e7a8ce7ac"
159
+ },
160
+ {
161
+ "host": "localhost",
162
+ "port": 36381,
163
+ "id": "P3Xid3907c4b8e810100084704e45d3bd37"
164
+ }
165
+ ]
166
+ },
167
+ {
168
+ "name": "cluster grokzen",
169
+ "host": "localhost",
170
+ "port": 7000,
171
+ "askAuth": false,
172
+ "id": "P3Xid491fe7b8e81010008ba0f8c654ae0e",
173
+ "tlsWithoutCert": false,
174
+ "tlsRejectUnauthorized": false,
175
+ "ssh": false,
176
+ "sshPort": 22,
177
+ "cluster": true,
178
+ "sentinel": false,
179
+ "nodes": [
180
+ {
181
+ "host": "localhost",
182
+ "port": 7001,
183
+ "id": "P3Xid8035e7b8e8101000836a3798403521"
184
+ },
185
+ {
186
+ "host": "localhost",
187
+ "port": 7002,
188
+ "id": "P3Xidbbe6e7b8e810100007d8705d2db9a3"
189
+ },
190
+ {
191
+ "host": "localhost",
192
+ "port": 7003,
193
+ "id": "P3Xiddd68e7b8e810100003921524ee5e38"
194
+ },
195
+ {
196
+ "host": "localhost",
197
+ "port": 7004,
198
+ "id": "P3Xid73e9e7b8e810100006f8a0a1ab2c2b"
199
+ },
200
+ {
201
+ "host": "localhost",
202
+ "port": 7005,
203
+ "id": "P3Xid1d5be7b8e810100009ae5b8ee7e201"
204
+ }
205
+ ]
206
+ }
207
+ ]
208
+ }
@@ -0,0 +1,152 @@
1
+ {
2
+ "update": "2064-03-29T14:10:53.960Z",
3
+ "license": "MIT",
4
+ "list": [
5
+ {
6
+ "id": "P3Xid-starts-with-and-indexing-unique-identifier",
7
+ "name": "instance with ssh",
8
+ "host": "127.0.0.1",
9
+ "port": 6379,
10
+ "password": "private",
11
+ "readonly": false,
12
+ "askAuth": false,
13
+ "cluster": false,
14
+ "sentinel": false,
15
+ "sentinelName": "",
16
+ "nodes": [],
17
+ "ssh": true,
18
+ "sshHost": "private",
19
+ "sshPort": 22,
20
+ "sshUsername": "private",
21
+ "sshPrivateKey": "private",
22
+ "sshPassword": "",
23
+ "tlsWithoutCert": false,
24
+ "tlsRejectUnauthorized": false,
25
+ "tlsCrt": "",
26
+ "tlsKey": "",
27
+ "tlsCa": ""
28
+ },
29
+ {
30
+ "id": "P3Xid-starts-with-and-indexing-unique-identifier",
31
+ "name": "instance with tls enabled",
32
+ "host": "127.0.0.1",
33
+ "port": 7379,
34
+ "password": "private",
35
+ "readonly": false,
36
+ "askAuth": false,
37
+ "cluster": false,
38
+ "sentinel": false,
39
+ "sentinelName": "",
40
+ "nodes": [],
41
+ "ssh": false,
42
+ "sshHost": "",
43
+ "sshPort": 22,
44
+ "sshUsername": "",
45
+ "sshPrivateKey": "",
46
+ "sshPassword": "",
47
+ "tlsWithoutCert": false,
48
+ "tlsRejectUnauthorized": false,
49
+ "tlsCrt": "private",
50
+ "tlsKey": "private",
51
+ "tlsCa": "private"
52
+ },
53
+ {
54
+ "id": "P3Xid-starts-with-and-indexing-unique-identifier",
55
+ "name": "instance with tls enabled without cert if it is valid",
56
+ "host": "127.0.0.1",
57
+ "port": 7379,
58
+ "password": "private",
59
+ "readonly": false,
60
+ "askAuth": false,
61
+ "cluster": false,
62
+ "sentinel": false,
63
+ "sentinelName": "",
64
+ "nodes": [],
65
+ "ssh": false,
66
+ "sshHost": "",
67
+ "sshPort": 22,
68
+ "sshUsername": "",
69
+ "sshPrivateKey": "",
70
+ "sshPassword": "",
71
+ "tlsWithoutCert": true,
72
+ "tlsRejectUnauthorized": false,
73
+ "tlsCrt": "",
74
+ "tlsKey": "",
75
+ "tlsCa": ""
76
+ },
77
+ {
78
+ "id": "P3Xid-starts-with-and-indexing-unique-identifier",
79
+ "name": "cluster",
80
+ "host": "127.0.0.1",
81
+ "port": 16379,
82
+ "password": "",
83
+ "readonly": false,
84
+ "askAuth": false,
85
+ "cluster": true,
86
+ "sentinel": false,
87
+ "sentinelName": "",
88
+ "nodes": [
89
+ {
90
+ "host": "127.0.0.1",
91
+ "port": 16380,
92
+ "password": "",
93
+ "id": "P3Xid-starts-with-and-indexing-unique-identifier-different-than-id-and-other-node-id"
94
+ },
95
+ {
96
+ "host": "127.0.0.1",
97
+ "port": 16381,
98
+ "password": "",
99
+ "id": "P3Xid-starts-with-and-indexing-unique-identifier-different-than-id-and-other-node-id"
100
+ }
101
+ ],
102
+ "ssh": false,
103
+ "sshHost": "",
104
+ "sshPort": 22,
105
+ "sshUsername": "",
106
+ "sshPrivateKey": "",
107
+ "sshPassword": "",
108
+ "tlsWithoutCert": false,
109
+ "tlsRejectUnauthorized": false,
110
+ "tlsCrt": "",
111
+ "tlsKey": "",
112
+ "tlsCa": ""
113
+ },
114
+ {
115
+ "id": "P3Xid-starts-with-and-indexing-unique-identifier",
116
+ "name": "sentinel",
117
+ "host": "127.0.0.1",
118
+ "port": 26379,
119
+ "password": "sentinel password",
120
+ "readonly": false,
121
+ "askAuth": false,
122
+ "cluster": false,
123
+ "sentinel": true,
124
+ "sentinelName": "sentinel",
125
+ "nodes": [
126
+ {
127
+ "host": "127.0.0.1",
128
+ "port": 26380,
129
+ "password": "",
130
+ "id": "P3Xid-starts-with-and-indexing-unique-identifier-different-than-id-and-other-node-id"
131
+ },
132
+ {
133
+ "host": "127.0.0.1",
134
+ "port": 26381,
135
+ "password": "",
136
+ "id": "P3Xid-starts-with-and-indexing-unique-identifier-different-than-id-and-other-node-id"
137
+ }
138
+ ],
139
+ "ssh": false,
140
+ "sshHost": "",
141
+ "sshPort": 22,
142
+ "sshUsername": "",
143
+ "sshPrivateKey": "",
144
+ "tlsWithoutCert": false,
145
+ "tlsRejectUnauthorized": false,
146
+ "tlsCrt": "",
147
+ "tlsKey": "",
148
+ "tlsCa": ""
149
+ }
150
+
151
+ ]
152
+ }
package/AGENTS.md ADDED
@@ -0,0 +1,68 @@
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
+ Exceptions
8
+ - Always log a short context plus the full exception (stack trace included).
9
+ - Never swallow errors. Rethrow or propagate unless explicitly safe to continue. Redact secrets.
10
+ - Example (do this): `catch (e) { console.error('context: saving profile failed', e); throw e }`
11
+ - Dont always try/catch, only when we needed, not always.
12
+ - Avoid micro try/catch. Do not wrap simple setters/state updates or single-line calls in individual try/catch blocks. Prefer a single, meaningful boundary (e.g., around a request handler or an async action) where you can add context and rethrow/propagate.
13
+ - Only catch when you will: (a) add context and rethrow; or (b) intentionally continue with a documented fallback that is safe. Otherwise, let errors bubble to the existing handler.
14
+ - Prefer optional chaining, guards, and validations over blanket try/catch.
15
+ [//]: #@corifeus-footer
16
+
17
+ ---
18
+
19
+ ## πŸš€ Quick and Affordable Web Development Services
20
+
21
+ If you want to quickly and affordably develop your next digital project, visit [corifeus.eu](https://corifeus.eu) for expert solutions tailored to your needs.
22
+
23
+ ---
24
+
25
+ ## 🌐 Powerful Online Networking Tool
26
+
27
+ Discover the powerful and free online networking tool at [network.corifeus.com](https://network.corifeus.com).
28
+
29
+ **πŸ†“ Free**
30
+ Designed for professionals and enthusiasts, this tool provides essential features for network analysis, troubleshooting, and management.
31
+ Additionally, it offers tools for:
32
+ - πŸ“‘ Monitoring TCP, HTTP, and Ping to ensure optimal network performance and reliability.
33
+ - πŸ“Š Status page management to track uptime, performance, and incidents in real time with customizable dashboards.
34
+
35
+ All these features are completely free to use.
36
+
37
+ ---
38
+
39
+ ## ❀️ Support Our Open-Source Project
40
+ 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!
41
+
42
+ ---
43
+
44
+ ### 🌍 About My Domains
45
+ 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.
46
+
47
+ ---
48
+
49
+ ### πŸ“ˆ Versioning Policy
50
+ **Version Structure:** We follow a **Major.Minor.Patch** versioning scheme:
51
+ - **Major:** πŸ“… Corresponds to the current year.
52
+ - **Minor:** πŸŒ“ Set as 4 for releases from January to June, and 10 for July to December.
53
+ - **Patch:** πŸ”§ Incremental, updated with each build.
54
+
55
+ **🚨 Important Changes:** Any breaking changes are prominently noted in the readme to keep you informed.
56
+
57
+ ---
58
+
59
+
60
+ [**P3X-REDIS-UI**](https://corifeus.com/redis-ui) Build v2026.4.102
61
+
62
+ [![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)
63
+
64
+
65
+
66
+
67
+
68
+ [//]: #@corifeus-footer:end
package/Dockerfile ADDED
@@ -0,0 +1,15 @@
1
+ #docker login
2
+ #docker build -t patrikx3/p3x-redis-ui .
3
+ ##docker tag IMAGE_ID patrikx3/p3x-redis-ui:latest
4
+ #docker push patrikx3/p3x-redis-ui:latest
5
+ #docker tag patrikx3/p3x-redis-ui:latest patrikx3/p3x-redis-ui:2023.4.102
6
+ #docker push patrikx3/p3x-redis-ui:2023.4.102
7
+ #docker images
8
+ #docker rmi -f IMAGE_ID
9
+ FROM node:lts-slim
10
+ ENV COMPOSER_PROCESS_TIMEOUT=3600
11
+ ENV DEBIAN_FRONTEND=noninteractive
12
+ ENV P3XRS_DOCKER_HOME=/settings
13
+ EXPOSE 7843
14
+ RUN npm -g --unsafe-perm install p3x-redis-ui
15
+ CMD p3x-redis
package/LICENSE ADDED
@@ -0,0 +1,19 @@
1
+ MIT License
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ of this software and associated documentation files (the "Software"), to deal
5
+ in the Software without restriction, including without limitation the rights
6
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
+ copies of the Software, and to permit persons to whom the Software is
8
+ furnished to do so, subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in all
11
+ copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19
+ SOFTWARE.