UNPKG

ioredis-commands

Version:
22 lines (14 loc) 409 B
# Redis Commands [![Build Status](https://travis-ci.org/luin/redis-commands.png?branch=master)](https://travis-ci.org/luin/redis-commands) This module exports all the commands that Redis supports. ## Install ```shell $ npm install ioredis-commands ``` ## Usage ```javascript var commands = require('ioredis-commands'); Object.keys(commands).forEach(function (command) { console.log(command); }); ```