https://github.com/telkomdev/redis-cli-node
<WARN: IN DEVELOPMENT> Redis CLI Client written in Nodejs with no dependencies
https://github.com/telkomdev/redis-cli-node
cli command-line-tool nodejs redis redis-cli redis-client
Last synced: 3 months ago
JSON representation
<WARN: IN DEVELOPMENT> Redis CLI Client written in Nodejs with no dependencies
- Host: GitHub
- URL: https://github.com/telkomdev/redis-cli-node
- Owner: telkomdev
- License: mit
- Created: 2019-08-18T07:00:36.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-08-18T07:00:56.000Z (over 6 years ago)
- Last Synced: 2025-01-16T20:19:07.150Z (11 months ago)
- Topics: cli, command-line-tool, nodejs, redis, redis-cli, redis-client
- Language: JavaScript
- Homepage:
- Size: 175 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## redis-cli-node
Redis CLI written in Nodejs
#### TODO
- Better output
- Handle connection error when `host or IP address` is invalid
### Usage
#### Development mode
The npm link command allow us to locally ‘symlink a package folder’, and for our needs, it will locally install any command listed in the bin field of our package.json.
The npm link command is used from within the NodeJS package directory we want to symlink:
```shell
$ npm link
```
to uninstall
```shell
$ npm unlink
```
Now we can executed from anywhere
```shell
$ redis-cli-node -h localhost -p 6379
```
[
](https://github.com/telkomdev/redis-cli-node)