chensenlai 10988628a0 语音房项目初始化 | 5 years ago | |
---|---|---|
.. | ||
coverage | 5 years ago | |
example | 5 years ago | |
lib | 5 years ago | |
node_modules | 5 years ago | |
.editorconfig | 5 years ago | |
.npmignore | 5 years ago | |
.travis.yml | 5 years ago | |
History.md | 5 years ago | |
README.md | 5 years ago | |
package.json | 5 years ago |
Realtime web framework combine koa and socket.io.
This project is under development now.
socket.io
support koa style middleware when socket connect and disconnect.socket.io
's event handler support generator function.socket.io
's socket
object like koa
's context
, to compact with some koa
's middlewares.$ npm install koa.io --save
var koa = require('koa.io');
var app = koa();
// middleware for koa
app.use(function*() {
});
// middleware for scoket.io's connect and disconnect
app.io.use(function* (next) {
// on connect
yield* next;
// on disconnect
});
// router for socket event
app.io.route('new message', function* () {
// we tell the client to execute 'new message'
var message = this.args[0];
this.broadcast.emit('new message', message);
});
app.listen(3000);
Please check out this simple chat example.
MIT