koa-batch

0.0.1 • Public • Published

Batch Request middleware for koa. Turn one request into many!

Looking for the ExpressJS version of this module?

A simple library for batching HTTP requests

View Documentation

Build Status Built with Grunt

QuickStart

Download via NPM

NPM

then in your app (example using koa-router)

var batch = require('koa-batch').batch();

// Use Batch Request as middleware on an endpoint you want to service batch requests
app.post('/batch', batch);

Optionally use our included middleware to check the validity of your batch request

var batch = require('koa-batch').batch(),
    validate = require('koa-batch').validate();

// Include the validate middleware before batch middleware
app.post('/batch', validate, batch);

And that's it!

Proudly written in Washington, D.C. by:

SocialRadar

Package Sidebar

Install

npm i koa-batch

Weekly Downloads

9

Version

0.0.1

License

none

Last publish

Collaborators

  • victorquinn