npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

n8n-nodes-redis-cli

v0.1.5

Published

An n8n node to execute raw Redis CLI commands

Readme

n8n-nodes-redis-cli

This is a custom node for n8n that allows you to execute raw Redis CLI commands directly within your workflows.

Unlike standard Redis nodes that limit you to predefined operations (like GET, SET, or DELETE), this node provides a text input where you can type any valid Redis CLI command, and it will be executed against your database.

Features

  • Executes arbitrary Redis commands.
  • Parses commands with quotes correctly (e.g., SET mykey "hello world").
  • Uses the built-in n8n Redis credentials, meaning you do not need to configure separate authentication for this node.
  • Outputs the raw result directly from the Redis server.

Installation

You can install this node directly from the n8n UI.

  1. Go to Settings in your n8n instance.
  2. Select Community Nodes.
  3. Click Install a community node.
  4. Enter n8n-nodes-redis-cli in the npm Package Name field.
  5. Click Install.

Alternatively, if you are running n8n via Docker or a custom script, you can install it via npm in your n8n installation directory:

npm install n8n-nodes-redis-cli

Usage

  1. Add the Redis CLI node to your workflow canvas.
  2. In the Credential for Redis dropdown, select your existing Redis credentials or create new ones.
  3. In the Command parameter, type the raw Redis command you wish to execute.

Command Examples

Here are a few examples of commands you can run:

  • String Operations:

    • SET user:1000 "John Doe"
    • GET user:1000
  • Key Management:

    • KEYS *
    • EXPIRE user:1000 3600
    • DEL user:1000
  • Hash Operations:

    • HSET user:profile name "Jane" age 30
    • HGETALL user:profile
  • List Operations:

    • LPUSH mylist "first item"
    • LRANGE mylist 0 -1

Output Format

The node outputs a JSON object containing the exact command you ran and the result returned by the Redis server.

Example output for the command GET mykey:

[
  {
    "command": "GET mykey",
    "result": "hello world"
  }
]

License

MIT