
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
http-cacher
Advanced tools
Simple HTTP cache middleware for express js applications
If you want to apply for all requests...
const httpCacher = require('http-cacher');
app.use(httpCacher({ maxAge: 300})); // 300 seconds
You can also write the above example like this..
const httpCacher = require('http-cacher');
app.use(httpCacher({ maxAge: '300s'})); // 300 seconds
If you want to apply for specific end-point...
const httpCacher = require('http-cacher');
app.use('/api/v1', httpCacher({ maxAge: '1d'}));
If you want to apply for specific http method
const httpCacher = require('http-cacher');
app.get('/api/v1/books', httpCacher({ maxAge: '1d'}), (req, res, next) => {
res.json({
books: [
'Eloquent JavaScript: A Modern Introduction to Programming',
'JavaScript: The Good Parts',
'JavaScript for Kids: A Playful Introduction to Programming'
]
});
});
If you want to apply headers conditionally... (You can pass custom function as second argument)
const httpCacher = require('http-cacher');
const zeroCacheAdmin = (req) => {
if (req.tokenData?.role === ADMIN) {
return false;
}
return true;
};
app.use(httpCacher({ maxAge: '1d'}, zeroCacheAdmin));
If you want to apply set cache as private
const httpCacher = require('http-cacher');
app.use(httpCacher({ maxAge: '1m', isPrivate: true})); // 1 minute
FAQs
Simple Express middleware to add http cache using max age header
The npm package http-cacher receives a total of 1 weekly downloads. As such, http-cacher popularity was classified as not popular.
We found that http-cacher 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.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.