mu-js
v0.1.6
Published
micro services in js
Downloads
1
Readme
Mu
Koa style micro services for intraprocess communication.
Installation
npm install mu-js
Mu works on the same versions of iojs and node as Koa.
Example
var mu = require('mu-js');
var co = require('co');
var app = mu.service();
app
.use(function *() {
if (this.method === 'GET' && this.path === 'echo') {
this.body = this.body;
}
});
co(function *() {
// res : "hello world"
var res = yield mu.request(app).get('echo', 'hello world');
});
License
MIT