tiny-rdm/README.md

116 lines
4.1 KiB
Markdown
Raw Permalink Normal View History

2023-08-20 00:53:29 +08:00
<div align="center">
<a href="https://github.com/tiny-craft/tiny-rdm/"><img src="build/appicon.png" width="120"/></a>
</div>
2023-08-20 00:53:29 +08:00
<h1 align="center">Tiny RDM</h1>
2024-01-12 00:55:06 +08:00
<h4 align="center"><strong>English</strong> | <a href="https://github.com/tiny-craft/tiny-rdm/blob/main/README_zh.md">
2024-08-18 11:50:15 +08:00
简体中文</a> | <a href="https://github.com/tiny-craft/tiny-rdm/blob/main/README_ja.md">日本語</a></h4>
2023-08-20 00:53:29 +08:00
<div align="center">
[![License](https://img.shields.io/github/license/tiny-craft/tiny-rdm)](https://github.com/tiny-craft/tiny-rdm/blob/main/LICENSE)
[![GitHub release](https://img.shields.io/github/release/tiny-craft/tiny-rdm)](https://github.com/tiny-craft/tiny-rdm/releases)
2024-01-02 16:12:40 +08:00
![GitHub All Releases](https://img.shields.io/github/downloads/tiny-craft/tiny-rdm/total)
[![GitHub stars](https://img.shields.io/github/stars/tiny-craft/tiny-rdm)](https://github.com/tiny-craft/tiny-rdm/stargazers)
[![GitHub forks](https://img.shields.io/github/forks/tiny-craft/tiny-rdm)](https://github.com/tiny-craft/tiny-rdm/fork)
2023-11-24 10:57:43 +08:00
[![Discord](https://img.shields.io/discord/1170373259133456434?label=Discord&color=5865F2)](https://discord.gg/VTFbBMGjWh)
[![X](https://img.shields.io/badge/Twitter-black?logo=x&logoColor=white)](https://twitter.com/Lykin53448)
2023-12-29 15:48:09 +08:00
<strong>Tiny RDM is a modern lightweight cross-platform Redis desktop manager available for Mac, Windows, and
Linux.</strong>
</div>
2023-06-27 15:53:29 +08:00
2023-11-03 17:55:41 +08:00
<picture>
<source media="(prefers-color-scheme: dark)" srcset="screenshots/dark_en.png">
<source media="(prefers-color-scheme: light)" srcset="screenshots/light_en.png">
<img alt="screenshot" src="screenshots/dark_en.png">
</picture>
2023-06-27 15:53:29 +08:00
2024-01-19 00:45:59 +08:00
<picture>
<source media="(prefers-color-scheme: dark)" srcset="screenshots/dark_en2.png">
<source media="(prefers-color-scheme: light)" srcset="screenshots/light_en2.png">
<img alt="screenshot" src="screenshots/dark_en2.png">
</picture>
## Feature
2023-08-11 11:27:53 +08:00
2023-12-29 15:48:09 +08:00
* Super lightweight, built on Webview2, without embedded browsers (Thanks
to [Wails](https://github.com/wailsapp/wails)).
2024-01-09 00:17:07 +08:00
* Provides visually and user-friendly UI, light and dark themes (Thanks to [Naive UI](https://github.com/tusen-ai/naive-ui)
2023-08-11 11:27:53 +08:00
and [IconPark](https://iconpark.oceanengine.com)).
2023-11-02 15:49:03 +08:00
* Multi-language support ([Need more languages ? Click here to contribute](.github/CONTRIBUTING.md)).
2024-02-22 21:32:42 +08:00
* Better connection management: supports SSH Tunnel/SSL/Sentinel Mode/Cluster Mode/HTTP proxy/SOCKS5 proxy.
2023-11-02 15:49:03 +08:00
* Visualize key value operations, CRUD support for Lists, Hashes, Strings, Sets, Sorted Sets, and Streams.
* Support multiple data viewing format and decode/decompression methods.
2023-11-03 10:08:18 +08:00
* Use SCAN for segmented loading, making it easy to list millions of keys.
2024-01-09 00:17:07 +08:00
* Logs list for command operation history.
* Provides command-line mode.
* Provides slow logs list.
2023-11-24 10:57:43 +08:00
* Segmented loading and querying for List/Hash/Set/Sorted Set.
2024-01-09 00:17:07 +08:00
* Provide value decode/decompression for List/Hash/Set/Sorted Set.
* Integrate with Monaco Editor
* Support real-time commands monitoring.
2023-12-29 15:48:09 +08:00
* Support import/export data.
2024-01-19 10:54:02 +08:00
* Support publish/subscribe.
2024-02-22 21:32:42 +08:00
* Support import/export connection profile.
* Custom data encoder and decoder for value display ([Here are the instructions](https://redis.tinycraft.cc/guide/custom-decoder/)).
2023-06-27 15:53:29 +08:00
## Installation
Available to download for free from [here](https://github.com/tiny-craft/tiny-rdm/releases).
> If you can't open it after installation on macOS, exec the following command then reopen:
2023-09-06 11:46:34 +08:00
> ``` shell
> sudo xattr -d com.apple.quarantine /Applications/Tiny\ RDM.app
> ```
2023-11-02 15:49:03 +08:00
## Build Guidelines
2023-12-29 15:48:09 +08:00
2023-08-21 18:05:20 +08:00
### Prerequisites
2023-12-29 15:48:09 +08:00
2023-11-02 15:49:03 +08:00
* Go (latest version)
2023-08-21 18:05:20 +08:00
* Node.js >= 16
2023-09-06 11:46:34 +08:00
* NPM >= 9
2023-08-21 18:05:20 +08:00
2024-03-15 16:30:40 +08:00
### Install Wails
2023-12-29 15:48:09 +08:00
2023-08-21 18:05:20 +08:00
```bash
go install github.com/wailsapp/wails/v2/cmd/wails@latest
```
2024-03-15 16:30:40 +08:00
### Pull the Code
2023-12-29 15:48:09 +08:00
2023-08-21 18:05:20 +08:00
```bash
git clone https://github.com/tiny-craft/tiny-rdm --depth=1
```
2024-03-15 16:30:40 +08:00
### Build Frontend
2023-12-29 15:48:09 +08:00
2023-08-21 18:05:20 +08:00
```bash
npm install --prefix ./frontend
```
2024-04-26 15:29:20 +08:00
or
```bash
cd frontend
npm install
```
2024-03-15 16:30:40 +08:00
### Compile and Run
2023-12-29 15:48:09 +08:00
2023-08-21 18:05:20 +08:00
```bash
wails dev
```
2024-01-09 00:17:07 +08:00
## About
2023-08-21 18:05:20 +08:00
2024-01-12 00:55:06 +08:00
### Wechat Official Account
<img src="docs/images/wechat_official.png" alt="wechat" width="360" />
2024-01-09 00:17:07 +08:00
### Sponsor
2024-01-09 00:17:07 +08:00
If this project helpful for you, feel free to buy me a cup of coffee ☕️.
* Wechat Sponsor
<img src="docs/images/wechat_sponsor.jpg" alt="wechat" width="200" />