/good-guy-disk-cache

Disk Cache implementation for Good Guy HTTP

Primary LanguageJavaScriptMIT LicenseMIT

good-guy-disk-cache

Disk cache implementation for Good Guy HTTP.

npm version dependencies dev dependencies npm license

Cache your HTTP(S) requests like a decent human-being. 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);
});

Changelog

v2.1.1 – October 22, 2019

  • upgraded all deps

v2.1.0 – March 24, 2017

  • initial public release