官方简介
🚀🚀🚀 更快、更好、更稳定的Redis桌面(GUI)管理客户端,兼容Windows、Mac、Linux,性能出众,轻松加载海量键值。更重要的是,它在加载大量密钥时不会崩溃。
Windows
choco install another-redis-desktop-manager
- 或者通过winget:
winget install qishibo.AnotherRedisDesktopManager
- 或者通过Win Store赞助,然后让Win Store帮你自动更新版本microsoft store
Linux
sudo snap install another-redis-desktop-manager
Tips: 如果选择私钥时提示权限不足,执行
sudo snap connect another-redis-desktop-manager:ssh-keys
来获取对~/.ssh文件夹的权限
Snap Store
Mac
- 通过 brew:
brew install --cask another-redis-desktop-manager
起飞吧!
Dev Build
Tips: 此为开发环境,用于运行完整项目,普通用户直接从前面下载安装包即可
Linux Or Mac
# clone code
git clone https://github.com/qishibo/AnotherRedisDesktopManager.git --depth=1
cd AnotherRedisDesktopManager
# install dependencies
npm install
# if download electron failed during installing, use this command
# ELECTRON_MIRROR="https://npm.taobao.org/mirrors/electron/" npm install
# serve with hot reload at localhost:9988
npm start
# after the previous step is completed to 100%, open another tab, build up a desktop client
npm run electron
- If linux errors like this:
# if error like this
../src/FontManagerLinux.cc:1:35: fatal error: fontconfig/fontconfig.h: No such file or directory
# then try this
sudo apt install libfontconfig1-dev
Windows
# install build tools for the first time, just execute once
npm install -g windows-build-tools
# clone code
git clone https://github.com/qishibo/AnotherRedisDesktopManager.git --depth=1
cd AnotherRedisDesktopManager
# install dependencies, 32-bit or 64-bit all use win32
npm install --platform=win32
# if download electron failed during installing, use this command
# npm config set ELECTRON_MIRROR http://npm.taobao.org/mirrors/electron/
# npm install --platform=win32
# serve with hot reload at localhost:9988
npm start
# after the previous step is completed to 100%, open another tab, build up a desktop client
npm run electron
- Build Package
# prepare before package
npm run pack:prepare
# build package on respective platforms
# on windows build 64bit package
npm run pack:win
# on windows build 32bit package
npm run pack:win32
# on mac
npm run pack:mac
# on linux
npm run pack:linux
评论区