Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

api-fs-cacher

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

api-fs-cacher

cache responses from APIs on the filesystem and re-use them

  • 0.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

api-cacher

api-cacher is a (currently) very small helper to cache the response (only JSON) of APIs and check for them.

It works by storing the response on the filesystem in a directory specific to the API call. You must assign an ID that becomes the name of the file stored. This ID is used to check if the response already exists.

Setup (per API call)

const cache_directory = './tmp/cache';
var cacher = require("api-cacher")(cache_directory);

Using

var id = '1121' // some unique ID for the data you need.
cacher.check(id, function(err, results) {
    if (!err && results) {
        // great don't need to make an API call
    } else {
        // need to make an API call
        apiCall(function(err, results) {
            cacher.save(id, response)
        });
    }
});

Keywords

FAQs

Package last updated on 25 Sep 2016

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc