New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

request-cached

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

request-cached

This library adds to request library the ability to cache data retrieved from a main server into a local server.

  • 1.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
63
increased by36.96%
Maintainers
1
Weekly downloads
 
Created
Source

Request cached

Build Status Coverage Status NPM Version

This library adds to request library the ability to cache data retrieved from a main server into a local server.

So, when you are requesting data for the first time, it will be retrieved from the main server and saved locally. Afterwards whenever you do the request for a second time, the data is retrieved locally.

Useful when scrapping.

Index

Install

Install request-cached with npm.

npm install request-cached --save

Use

In order to use request-cached you need to provide the request object you want to use.

const request = require('request'),
    requestCached = require('request-cached')(request);

return requestCached(params)
  .then((result) => {
    // Do something with the result
  })
  .catch((error) => {
    // Do something with the error
  });

Different request objects for main and cache requests

The request object can be any other request-compatible object like throttled-request. You can even provide a different object for the cache and for the main requests, as you could probably have some limitations for the requests to the main server which you don't for the local server.

const cacheRequest = require('request'),
    mainRequest = require('throttled-request')(cacheRequest),
    requestCached = require('request-cached')(mainRequest, cacheRequest);

mainRequest.configure({
  requests: 2,
  milliseconds: 1000
});

return requestCached(params)
  .then((result) => {
    // Do something with the result
  })
  .catch((error) => {
    // Do something with the error
  });

Params

  • main: Compulsory object where are set the params to access online data
  • cache: Optional object where are set the params to access cached data
  • save: Optional object where are set the params to save online data
    • path: Path to save data to
    • parseFn: Function used to modify data before saving it
  • request: Optional object where are set the additional params to access online and cached data
    • All possible request params
    • customErrorFn: Custom function to determine when a response is considered an error. By default:
    customErrorFn: (error, response, body) => error
    

Result parameter if resolved

Object with the following keys:

  • response: Second argument of a request callback
  • body: Third argument of a request callback
  • isCached: A boolean indicating whether the data is retrieved from cache or not.

Error parameter if rejected

It is the first argument of a request callback

Example

const request = require('request'),
    requestCached = require('request-cached')(request);

function getParams(userId) {
  return {
    main: {
      uri: 'http://real/data/domain/mainUrl',
      qs: {
        id: userId
      }
    },
    cache: {
      uri: `http://localhost/cachedUrl/${userId}`
    },
    save: {
      path: `/var/www/cachedUrl/${userId}`
    },
    request: {
      proxy: 'http://localhost:8080',
      encoding: 'utf8'
    }
  };
}

var userId = 12345;
return requestCached(getParams(userId))
  .then((result) => {
    console.log(result.body);
  })
  .catch((error) => {
    console.error(error);
  });

Code testing

If you wanna test the code, follow these steps:

> git clone https://github.com/germanrio/request-cached.git
> cd request-cached
> npm install
> npm test

Note: Of course is also needed to have properly installed node and npm.

Code coverage

If you also want to see the code coverage of tests:

> npm run cov

It will generate a coverage folder with the coverage report.

License

MIT

More details in the LICENSE file in root folder.

Keywords

FAQs

Package last updated on 19 Oct 2017

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