mephisto
v0.0.1
Published
return a request handler from an API schema
Downloads
2
Readme
Mephisto
Return a request handler from an API schema.
Install
$ git clone https://github.com/jclem/mephisto
$ cd mephisto
$ npm install
Use
var mephisto = require('mephisto'),
http = require('http'),
schema = require('./schema'),
handler = mephisto(schema);
http.createServer(handler);