We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
const IO = require('koa-socket-2'); const Koa = require('koa'); const redis = require('socket.io-redis'); const app = new Koa(); const io = new IO(); io.attach(app); io.adapter(redis({ host: 'localhost', port: 6379 }));