Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jclem/mephisto

illusions of the v3 heroku api
https://github.com/jclem/mephisto

Last synced: about 1 month ago
JSON representation

illusions of the v3 heroku api

Awesome Lists containing this project

README

        

# Mephisto

Return a request handler from an API schema.

## Install

```sh
$ git clone https://github.com/jclem/mephisto
$ cd mephisto
$ npm install
```

## Use

```javascript
var mephisto = require('mephisto'),
http = require('http'),
schema = require('./schema'),
handler = mephisto(schema);

http.createServer(handler);
```