mu-js

0.1.6 • Public • Published

Codeship Status for mu-js/mu

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

Readme

Keywords

Package Sidebar

Install

npm i mu-js

Weekly Downloads

0

Version

0.1.6

License

MIT

Last publish

Collaborators

  • joshrtay