Another Redis Desktop Manager is a faster, better and more stable Redis desktop manager, compatible with Linux, Windows and Mac. Also, it doesn't crash when loading a large number of keys.
The installation of such software and tools is very simple and easy to operate.
1. Mac or Linux installation
# clone code git clone https://github.com/qishibo/AnotherRedisDesktopManager.git 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
If the following error message appears, the official has also provided a considerate solution.
# if error like this ../src/FontManagerLinux.cc:1:35: fatal error: fontconfig/fontconfig.h: No such file or directory # then try this yum install libfontconfig1-dev -y
2. Windows installation
# 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 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
The above is the detailed content of How to install Another Redis Desktop Manager. For more information, please follow other related articles on the PHP Chinese website!