html cache control for koajs
yarn add @redpill-paris/koa-cache-control
const controlCache = require('@redpill-paris/koa-cache-control');
app.use(cacheControl([
'no-cache'
]));See html control cache parameters
async getUser(ctx) {
...
ctx.cacheControl = ['public', 'max-age=600'];
...
ctx.response.status = 200;
}