datastack icon indicating copy to clipboard operation
datastack copied to clipboard

Drop-in RESTful middlewares for koa

DataStack

Build Status

NPM

Human-friendly RESTful middlewares for koa

TL;DR

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 collections.

Philosophy

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:

  • Data model and data storage
  • API exposed by built-in components
  • Design patterns
  • Plugin system
  • Working with cluster
  • Authentication

Roadmap

License

MIT