Git Product home page Git Product logo

hgetall-console's Introduction

hgetall-console

Containerized util to pretty print Redis hashes to the console.

Build

We build a container image for this service:

docker build -t hgetall-console https://github.com/evanx/hgetall-console.git

See Dockerfile https://github.com/evanx/hgetall-console/blob/master/Dockerfile

Usage

docker run --network=host -e key=person:1:h hgetall-console

This will HGETALL a Redis hashes key person:1:h and pretty print to the console.

Test

See bin/test.sh https://github.com/evanx/hgetall-console/blob/master/bin/test.sh

redis-cli hset $key name 'Richard Feynman'
redis-cli hset $key about 'https://en.wikipedia.org/wiki/Richard_Feynman'
redis-cli hset $key born '1918-05-11'
redis-cli hset $key died '1988-02-15'
key=$key npm start

Implementation

See lib/app.js https://github.com/evanx/hgetall-console/blob/master/lib/app.js

    const [hashes] = await multiExecAsync(client, multi => {
        multi.hgetall(config.key);
    });
    console.log(clc.bold('hgetall'), clc.cyan.bold(config.key));
    if (hashes) {
        Object.keys(hashes).forEach(key => {
             console.log(clc.white(key), clc.cyan(hashes[key]));
        });
    }

Uses application archetype: https://github.com/evanx/redis-app


https://twitter.com/@evanxsummers

hgetall-console's People

Contributors

evanx avatar dependabot[bot] avatar

Watchers

James Cloos avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.