2.0.0 • Published 6 years ago

koa-no-cache v2.0.0

Weekly downloads
414
License
MIT
Repository
github
Last release
6 years ago

NPM version Build status Test coverage License Dependency status

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