├── .gitignore ├── Makefile ├── README.md ├── index.js ├── lib └── node-redis-pubsub.js ├── package.json └── test └── redisQueue.test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/louischatriot/node-redis-pubsub/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/louischatriot/node-redis-pubsub/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/louischatriot/node-redis-pubsub/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/node-redis-pubsub'); 2 | -------------------------------------------------------------------------------- /lib/node-redis-pubsub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/louischatriot/node-redis-pubsub/HEAD/lib/node-redis-pubsub.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/louischatriot/node-redis-pubsub/HEAD/package.json -------------------------------------------------------------------------------- /test/redisQueue.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/louischatriot/node-redis-pubsub/HEAD/test/redisQueue.test.js --------------------------------------------------------------------------------