npm install ioredis-commands
This module exports all the commands that Redis supports.
``shell`
$ npm install ioredis-commands
`javascript
var commands = require('ioredis-commands');
Object.keys(commands).forEach(function (command) {
console.log(command);
});
``