Drop-in RESTful middlewares for koa
This project is maintained by RobinQu
Human-friendly RESTful middlewares for koa
Building your API like a pro:
var datastack = require("datastack"),
koa = require("koa");
var app = koa();
datastack(app, {
storage: {
type: "mongodb",
uri: "mongodb://127.0.0.1:27017/zoo"
}
});
app.resource("cats");
app.resource("dogs");
app.listen(porcess.env.PORT || 8888);
And you can now have fully operational RESTful API (and more) against two different collection
s.
Fundalmentally datastack
is a web middleware that is powered by koa
and its friends. It targets to help you to quickly build up your RESTful API with minimun code. To understand what datastack
really is, please read on the following topics:
MIT