@xpr/devcache
v0.6.0
Published
A Node.js client for the DevCache service
Maintainers
Readme
@xpr/devcache
Node.js client for the DevCache service.
Installation
npm install @xpr/devcacheUsage
import wrap from '@xpr/devcache';
function expensiveOperation() {
// Do something expensive
}
const cache = wrap('app', 'name', () => expensiveOperation());