Tagged Questions
0
votes
2answers
747 views
Private channels in node.js and redis. How to?
I wrote the simple script (app.js) to subscribe redis' channel
var app = require('express').createServer()
, io = require('socket.io').listen(app);
var redis = require("redis");
app.listen(8080);
...