Files: 8f4b43a09aab9801bf28987edd59c2e366180327 / test / test-79-npm / node-redis-pubsub / node-redis-pubsub.js
291 bytesRaw
1 | ; |
2 | |
3 | var NRP = require('node-redis-pubsub'); |
4 | var config = { port: 6379, scope: 'demo' }; |
5 | new NRP(config); // eslint-disable-line no-new |
6 | |
7 | process.on('uncaughtException', function (error) { |
8 | var ok = error.code === 'ECONNREFUSED'; |
9 | if (ok) console.log('ok'); |
10 | process.exit(); |
11 | }); |
12 |
Built with git-ssb-web