推荐一个 Node.js 开发的 Redis 客户端可视化管理工具

对于客户端可视化管理工具,MySql 有 Workbench,MongoDB 有 Robo 3T,那么 Redis 用什么呢?

Redis 在项目开发中也是一个普遍使用的数据库了,如果想在客户端查看一些数据,命令行的方式使用起来难免会繁琐,推荐一个使用 Node.js 开发的 Redis 客户端可视化管理工具 Another Redis DeskTop Manager。

来自官网的介绍:

Another Redis Desktop Manager 是一个更快,更好,更稳定的 Redis 桌面管理器,与 Linux,Windows 和 Mac 兼容,性能出众,轻松加载海量键值。

该项目是开源的,可以免费使用,截至目前 Github 标星 21.2k+。

image.png

安装包下载地址:https://github.com/qishibo/AnotherRedisDesktopManager/releases

如果电脑安装了 Node.js 环境,也可以在本地启动:

# 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, open another tab, build up a desktop client
npm run electron

你可能感兴趣的:(推荐一个 Node.js 开发的 Redis 客户端可视化管理工具)