
Product
Socket for Jira Is Now Available
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.
express-disk-cache
Advanced tools
Middleware for caching responses sent through [Express](http://expressjs.com/) to disk.
Middleware for caching responses sent through Express to disk.
Because web servers are good at delivering static files. It's also useful if you have NGINX sitting in front of your node.js webserver and want to take some of the load off it.
This also makes cache invalidation quite simple: just delete the file.
Use your package manager of choice, for example:
npm install express-disk-cache
Then include the middleware in your Express app:
var cache = require('express-disk-cache');
var app = Express();
// This will cache every response to disk
// assuming it meets the conditions described below
app.use(cache({
directory: __dirname + '/cache'
}));
As I understand it, HTTP response in express and node is a writeable stream. It wraps the res.write and res.end functions so it will work no matter how you send the response, using res.send, res.render, res.sendStatus, res.sendFile etc...
Check that the URL contains valid characters that we can use to create a file on the file system. Re-implement the filter function used by compression.
FAQs
Middleware for caching responses sent through [Express](http://expressjs.com/) to disk.
The npm package express-disk-cache receives a total of 6 weekly downloads. As such, express-disk-cache popularity was classified as not popular.
We found that express-disk-cache demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.