项目作者: vitorsalgado

项目描述 :
Adds common Redis commands to VS Code
高级语言: JavaScript
项目地址: git://github.com/vitorsalgado/vscode-redis.git
创建时间: 2016-08-03T13:26:15Z
项目社区:https://github.com/vitorsalgado/vscode-redis

开源协议:MIT License

下载




All Contributors

VS Code Redis

Extension for Visual Studio Code

Build Status
js-standard-style
Version
Installs
Adds common Redis commands to VS Code Command Palette.

Install

The Plugin on Visual Studio Marketplace.

  • Press Ctrl + Shift + P
  • Pick Extensions: Install Extension
  • Search for vscode-redis

Usage

how to

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:

  1. {
  2. "databases": [
  3. {
  4. "name": "local",
  5. "url": "redis://localhost:6379"
  6. },
  7. {
  8. "name": "production",
  9. "url": "rediss://production-address:9091",
  10. "password": "super_secret_password"
  11. }
  12. ]
  13. }

Execute the command Redis: Reload Configuration to load the servers listed in configuration file.

Changelog

See Changelog.

Contributing

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

Versioning

We use Semantic Versioning for versioning. For the versions available, see the tags on this repository.

License

This project is available under MIT License. See LICENSE.

Contributors ✨

Thanks goes to these wonderful people (emoji key):







LexCher

💻

Dave Glendenning

💻

This project follows the all-contributors specification. Contributions of any kind welcome!