0.0.7 • Published 5 years ago

swatchjs-batch-koa v0.0.7

Weekly downloads
43
License
MIT
Repository
github
Last release
5 years ago

swatchjs-batch-koa

CircleCI | codecov | Coverage Status | Known Vulnerabilities

An extension for swatchjs to provide a method to invoke multiple API methods at once in KOA server context.

Quick start

All you have to do is add a few lines of code to your existing swatchjs code. The sample below shows how to use the swatchjs-batch-koa with the simple API from the swatchjs and swatchjs-koa README file:

const swatch = require('swatchjs');
const swatchKoa = require('swatchjs-koa');
const batchKoa = require('swatchjs-batch-koa'); // add this line

const model = swatch({
    "numbers.add": (a, b) => Number(a) + Number(b),
    "numbers.sub": (a, b) => Number(a) - Number(b),
});
const batchModel = swatch({'batch': batchKoa(model)}); // add this line
const extendedModel = model.concat(batchModel); // optionally add this line

const app = Koa();
swatchKoa(app, extendedModel);

API reference

The batch-koa function

const batchKoa = require('swatchjs-batch-koa');

const augmentedModel = batchKoa(model, name);

Loading this library will result in a function (batchKoa in the example above) which when called will return a handler that can be used with the swatch function to produce a model for the API method that allows all other methods to be invoked in a single network call.

The function exposed by the library takes the following parameters:

ParameterRequiredDescription
modelYesA model produced by by the swatch function (see swatchjs)
nameNoThe name of the API method. Defaults to batch.

Return value

The batchKoa method returns a handler that takes the following parameters:

ParameterRequiredDescription
opsYesAn array of operations to batch.
ops[idx].methodYesThe method name.
ops[idx].argsYesAn object with the arguments to pass to the method.

The methods are not guaranteed to be executed in any particular order, and they succeed or fail independently. They are however guaranteed to be returned in the order in which they are received.

The response will be an array of responses, where each response has the following properties:

PropertyPresentDescription
okAlwaystrue if the method succeed, false otherwise.
resultSometimesValue returned by method handler if it succeeded and returned anything other than undefined.
errorSometimesException thrown by method handler when it failed.

Runtime errors

The following errors will be generated during runtime (when invoking the handler):

ErrorError scopeDescription
invalid_requestHandlerops parameter was not valid.
invalid_methodOperationSpecified method was not declared in the API.

Developers

Coding Style

This project follows the AirBnB Javascript Coding Guidelines using ESLint settings.