Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

koa-cash

Package Overview
Dependencies
Maintainers
2
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

koa-cash

HTTP response caching for Koa

  • 1.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
422
decreased by-39.37%
Maintainers
2
Weekly downloads
 
Created
Source

Koa Cash

NPM version Build status Test coverage Dependency Status License Downloads Gittip

HTTP response caching for Koa. Caches the response based on any arbitrary store you'd like.

  • Handles JSON and stream bodies
  • Handles gzip compression negotiation
  • Handles 304 responses
app.use(require('koa-cash')({
  // some options
}))

app.use(function* (next) {
  // this response is already cashed if `true` is returned,
  // so this middleware will automatically serve this response from cache
  if (yield* this.cashed()) return

  // set the response body here,
  // and the upstream middleware will automatically cache it
  this.response.body = 'hello world!'
})

API

app.use(require('koa-cash')(options))

Options are:

maxAge

Default max age for the cache if not set via yield* this.cashed(maxAge).

threshold

Minimum byte size to compress response bodies. Default 1kb.

hash()

A hashing function. By default, it's:

function hash(_this) {
  return this.request.url
}

this is the Koa context and is also passed as an argument. By default, it caches based on the URL.

get()

Get a value from a store. Must return a "yieldable", which returns the cache's value, if any.

function get(key, maxAge) {
  return <yieldable>
}

Note that all the maxAge stuff must be handled by you. This module makes no opinion about it.

set()

Set a value to a store. Must return a "yieldable".

function set(key, value) {
  return <yieldable>
}
Example

Using a library like lru-cache, though this would not quite work since it doesn't allow per-key expiration times.

var cache = require('lru-cache')({
  maxAge: 30000 // global max age
})

app.use(require('koa-cash')({
  get: function* (key, maxAge) {
    return cache.get(key)
  },
  set: function* (key, value) {
    cache.set(key, value)
  }
}))

var cached = yield* this.cashed([maxAge])

This is how you enable a route to be cached. If you don't call yield* this.cashed(), then this route will not be cached nor will it attempt to serve the request from the cache.

maxAge is the max age passed to get().

If cached is true, then the current request has been served from cache and you should early return. Otherwise, continue setting this.response.body= and this will cache the response.

Notes

  • Only GET and HEAD requests are cached.
  • Only 200 responses are cached. Don't set 304 status codes on these routes - this middleware will handle it for you
  • The underlying store should be able to handle Date objects as well as Buffer objects. Otherwise, you may have to serialize/deserialize yourself.

FAQs

Package last updated on 15 Sep 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc