koa-better-timeout

0.0.6 • Public • Published

koa-better-timeout

build status code coverage code style styled with prettier made with lass license

Response timeout middleware for Koa and Lad (uses Boom by default)

Table of Contents

Install

npm:

npm install koa-better-timeout

yarn:

yarn add koa-better-timeout

Usage

Default middleware usage:

const Timeout = require('koa-better-timeout');
 
// ...
 
const timeout = new Timeout();
app.use(timeout.middleware);

Advanced middleware usage (e.g. using Lad and its @ladjs/i18n middleware) with translated response message:

const Timeout = require('koa-better-timeout');
 
// ...
 
const timeout = new Timeout({
  message: ctx => ctx.translate('REQUEST_TIMED_OUT')
});
app.use(timeout.middleware);

Options

You can optionally pass an object of options to Timeout(opts).

The default option values use Boom and are:

{
  ms: 6000,
  message: Boom.clientTimeout().message,
  sendResponse: Boom.clientTimeout
}

Note that message can be a function that accepts one argument ctx. This is useful if you wish to use i18n translation for the response message.

Contributors

Name Website
Nick Baugh http://niftylettuce.com/

License

MIT © Nick Baugh

Package Sidebar

Install

npm i koa-better-timeout

Weekly Downloads

108

Version

0.0.6

License

MIT

Unpacked Size

10.4 kB

Total Files

11

Last publish

Collaborators

  • niftylettuce
  • titanism