https://github.com/vitorsalgado/vscode-redis
Adds common Redis commands to VS Code
https://github.com/vitorsalgado/vscode-redis
javascript redis vscode vscode-extension vscode-plugin
Last synced: 7 months ago
JSON representation
Adds common Redis commands to VS Code
- Host: GitHub
- URL: https://github.com/vitorsalgado/vscode-redis
- Owner: vitorsalgado
- License: mit
- Created: 2016-08-03T13:26:15.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2022-03-28T17:07:22.000Z (almost 4 years ago)
- Last Synced: 2024-08-23T01:06:48.154Z (over 1 year ago)
- Topics: javascript, redis, vscode, vscode-extension, vscode-plugin
- Language: JavaScript
- Homepage: https://marketplace.visualstudio.com/items?itemName=vitorsalgado.vscode-redis
- Size: 565 KB
- Stars: 9
- Watchers: 4
- Forks: 4
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
[](#contributors-)
# VS Code Redis
#### Extension for Visual Studio Code
[](https://travis-ci.org/vitorsalgado/vscode-redis)
[](http://standardjs.com)


Adds common Redis commands to VS Code Command Palette.
## Install
The Plugin on [Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=vitorsalgado.vscode-redis).
* Press `Ctrl + Shift + P`
* Pick `Extensions: Install Extension`
* Search for **vscode-redis**
## Usage

## Features
* Multiple Redis connections;
* Switch between server connections;
* "Command Palette" supported Redis commands:
* `info`
* `get`
* `set`
* `hget`
* `hset`
* `del`
* `hdel`
* `hgetall`
* `llen`
* `lpush`
* `lpushx`
* `rpush`
* `rpushx`
* `lindex`
* `linsert`
* `lrange`
* `lpop`
* `rpop`
* `lset`
* `ltrim`
## Optional Extension Settings
You can configure multiple Redis connections on your workspace.
First, place a file named "redis.json" in .vscode folder. Open "redis.json" and edit it following the sample below:
```
{
"databases": [
{
"name": "local",
"url": "redis://localhost:6379"
},
{
"name": "production",
"url": "rediss://production-address:9091",
"password": "super_secret_password"
}
]
}
```
Execute the command `Redis: Reload Configuration` to load the servers listed in configuration file.
## Changelog
See [Changelog](CHANGELOG.md).
## Contributing
Please read [CONTRIBUTING.md](CONTRIBUTING.md) for details on our code of conduct, and the process for submitting pull requests to us.
## Versioning
We use **[Semantic Versioning](https://semver.org/)** for versioning. For the versions available, see the tags on this repository.
## License
This project is available under MIT License. See [LICENSE](LICENSE).
## Contributors ✨
Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!