Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>VS Code RedisNew to Visual Studio Code? Get it now.
VS Code Redis

VS Code Redis

Vitor Hugo Salgado

|
28,195 installs
| (1) | Free
Adds common Redis commands to VS Code Command Palette
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

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:

{
    "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.

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!

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft