koa-no-cache
v2.0.0
Published
no cache for some paths or types
Downloads
915
Readme
koa-no-cache
no cache for koa apps
example
Adding no cache header on some paths or types
const noCache = require('koa-no-cache')
const Koa = require('koa')
const app = new Koa()
app.use(noCache({
paths: ['/users/(.*)'],
types: ['manifest']
}))
Adding no cache header globally
const noCache = require('koa-no-cache')
const Koa = require('koa')
const app = new Koa()
app.use(noCache({
global: true
}))
License
MIT