Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/jclem/mephisto
- Owner: jclem
- License: mit
- Created: 2014-02-25T05:42:06.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-03-04T23:54:40.000Z (over 10 years ago)
- Last Synced: 2024-04-29T22:13:39.765Z (7 months ago)
- Language: JavaScript
- Homepage:
- Size: 227 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
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);
```