Limit max requests on each http keepalive connection.
$ npm install koa-maxrequests
const maxrequests = require('koa-maxrequests');
const koa = require('koa');
const app = koa();
app.use(maxrequests({
// if keepalive socket hit max requests, response will set `Connection: close` header.
max: 1000,
}));