Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

[koa-no-cache] no cache for some paths or types

Resources

Stars

Watchers

Forks

Releases

Packages

Used by

Contributors

Languages