UNPKG

respress

Version:

A RESP 'Redis Serialization Protocol' library implementation to generate a server, uses a similar approach to express to define you serer, making it easy and fast.

7 lines (6 loc) 195 B
const Redis = require("ioredis"); const redis = new Redis({port:9001, password:"letMeIn!"}); redis.call('PING', ['yousef', 'wadi', 'venom'], function(err, value) { console.log(value); });