2.1.0 • Published 7 years ago

good-guy-disk-cache v2.1.0

Weekly downloads
5
License
MIT
Repository
github
Last release
7 years ago

good-guy-disk-cache

Disk cache adapter for Good Guy HTTP.

Cache your HTTP(S) requests like a gentleman. For use with Good Guy HTTP. Depends on Async Disk Cache.

Usage

var DiskCache = require("good-guy-disk-cache");
var GoodGuy = require('good-guy-http');

var diskCache = new DiskCache("my-cache");
// 'my-cache' also serves as the global key for the cache.
// if you have multiple programs with this same `cache-key` they will share the
// same backing store. This by design.

var goodGuy = GoodGuy({cache: diskCache});

// this request will get its response cached to disk, will be retried if it
// fails, will be collapsed if you happen to make two of them
goodGuy('http://news.ycombinator.com').then(function(response) {
  console.log(response.body);
});