
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
node-proxy-cache
Advanced tools
A proxy that you can cache the calls between a server and here to avoid caching
proxy cache is a module that allows you to run a proxy server that will cache request.
$ npm install node-proxy-cache
var ProxyCache = require( 'node-proxy-cache' ),
proxyCache = new ProxyCache({}),
DS = {};
proxyCache.when( /google/, {
getKey: function( path, query ) { // allows you to generate keys
return 'foo:' + path;
},
headers: {
'X-Bar': 'Baz' // set custom headers when sending to proxy
},
caching: false // don't cache responses from google
});
proxyCache.when( /foo.org/, {
cacheTime: function( cacheEntry, req, proxyRes ) {
if ( cacheEntry.body.length > 10000000 ) {
return -1; // don't cache big responses
}
if ( req.url.match( /bar/) ) {
return 0; // cache bar stuff forever
}
if ( proxyRes.statusCode === 404 ) {
return -1; // don't cache 404 responses
}
return 10000; // only cache for 10 seconds
}
});
proxyCache.store({ // custom storeAdapter
get: function( key, callback ) {
callback( null, DS[key] ); // getting information
},
set: function( key, value, callback ) { // setting values to store
DS[ key ] = value; // value.body is a buffer
callback( );
}
});
proxy.listen( 9000 ); // listen on port
$ curl -L -G -d "\$url=http://google.com" http://localhost:9000/
to set the url of the page to proxy to, set the $url param. Also if you need to specify a path you can either do that in the $url param or on the original.
$ curl -L -G -d "\$url=http://google.com" http://localhost:9000/imghp
or
$ curl -L -G -d "\$url=http://google.com/imghp" http://localhost:9000
FAQs
A proxy that you can cache the calls between a server and here to avoid caching
We found that node-proxy-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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.