Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
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 0 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.