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 🙏

© 2024 – Pkg Stats / Ryan Hefner

node-redis-commands

v0.1.5

Published

A Node.js module reporting all commands implemented by Redis.

Downloads

35

Readme

node-redis-commands

A Node.js module reporting all commands implemented by Redis.

The module gives you access to

Reports contain info from Redis COMMAND plus data types each command operates on (if applicable).

Installation

npm install node-redis-commands

Usage

Compiled report

var
    commands = require('node-redis-commands').commands;

console.log(commands.get); // output below

/*
{ name: 'get',
  arity: 2,
  flags: [ 'readonly', 'fast' ],
  firstKeyAt: 1,
  lastKeyAt: 1,
  step: 1,
  types: [ 'string' ] }
*/

Reporting function

Reporting function issues a COMMAND on a Redis client instance and returns the same list of commands of the compiled report.

This module is client agnostic: you can use your library of choice as long as it exposes both INFO and COMMAND commands.


// module deps
var
    Redis = require('ioredis');
    report = require('node-redis-commands').report;

var
    client = new Redis(),
    callback = function (error, version, commands) {

        client.disconnect();

        if (error) {
            throw error;
        }

        console.log(commands.get); // output below

        /*
        { name: 'get',
          arity: 2,
          flags: [ 'readonly', 'fast' ],
          firstKeyAt: 1,
          lastKeyAt: 1,
          step: 1,
          types: [ 'string' ] }
        */
    };

report(client, callback);

If you prefer having the list returned as an array


// module deps
var
    Redis = require('ioredis');
    report = require('node-redis-commands').report;

var
    client = new Redis(),
    asArray = true,
    callback = function (error, version, commands) {

        client.disconnect();

        if (error) {
            throw error;
        }

        console.log(commands[0]); // output below

        /*
        { name: 'hlen',
            arity: 2,
            flags: [ 'readonly', 'fast' ],
            firstKeyAt: 1,
            lastKeyAt: 1,
            step: 1,
            types: [ 'set' ] }
        */
    };

report(client, asArray, callback);

Change Log

0.1.5 (2015-06-22)

Fix redis issue #2598

0.1.4

Fix type for commands operating on keys of type hash

0.1.3

Update compiled report to Redis 3.0.1

0.1.2

Just changed package definition

0.1.1

Added Type constants

0.1.0

Initial release