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

cachecache

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cachecache

Connect middleware that preemptively 304s

  • 1.0.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
33
increased by6.45%
Maintainers
1
Weekly downloads
 
Created
Source

cachecache

Connect middleware to preemptively handle requests containing If-None-Match and If-Modified-Since headers.

By default, Express will return 304s for dynamic content, but only after it has been regenerated. This caches response headers (but not bodies) to allow 304s to be sent without potentially-costly content regeneration.

Usage

npm install --save cachecache
var app = require("express")();

app.use(require("cachecache")({
  max: 1000000 // maximum number of entries in the underlying LRU cache;
               // default value
});

// ...

FAQs

Package last updated on 05 Nov 2018

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