@uswitch/koa-timeout v1.7.0
How it works
koa-timeout uses
Promise.race
to race a setTimeout against your Koa middlewares/response.
Timeout example
Middlewares
A 1s B 2s C 3s D 4s
āāāāāāā“āāāāāāāāā“āāāāāā³āāāāā“āāāāāāāāāā“āāāāā
Req āāāāāā¤
ā°āāāāāāāāāāāāāāāāāāāāā¬āāā 408 - 2500ms
Timeout
2.5sIn this example, a request has come in and the timeout is racing
middlewares, A, B, C & D. However, the timeout is triggered
causing a 408 response after 2500ms.
The ā³ signifys a short circuit and prevents middlewares C &
D from running.
Successful example
Middlewares
A 1s B 2s C 3s D 4s
āāāāāāā“āāāāāāāāā“āāāāāāāāāā“āāāāāāāāāā“āāāāāāā®
ā ā
Req āāāāā⤠ā°āāā 200 - 4500ms
ā
ā°āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā³āāāāāāāāāāāāāāāāāāāāā®
Timeout
5sIn this example, all 4 middlewares - A, B, C & D - have
finished, resulting in a 200 response after ~4500ms. The timeout
is then cleared, signified by the ā³.
Usage
The middleware can be configured with a custom timeout time and status code.
import Koa from 'koa'
import timeout from '@uswitch/koa-timeout'
const app = new Koa()
app.use(timeout(1000)) // 1s timeout
app.use(timeout(1000, { status: 499 })) // 1s timeout with 499 statusShort circuiting
N.B. By default, koa-timeout does not short circuit the
other middlewares. This means that the in-flight request will continue to be
processed even though a response has already been sent.
This behaviour can be useful in development to see where the slow parts of the request are, however, in production you probably want to kill the request as soon as possible.
To enable short circuiting
This will prevent the next middleware after a timeout from triggering.
import { shortCircuit } from '@uswitch/koa-timeout'
app.use(timeout(5000))
app.get('*', shortCircuit(handleInitialState))
app.get('*', shortCircuit(handleRendering))
app.get('*', shortCircuit(handleReturn))
// Or
app.get('*', ...shortCircuit(handleInitialState, handleRendering, handleReturn))8 months ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
3 years ago
3 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago