request-cached v1.0.1
Request cached
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 --saveUse
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- All possible request params
cache: Optional object where are set the params to access cached data- All possible request params
save: Optional object where are set the params to save online datapath: Path to save data toparseFn: 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 callbackbody: Third argument of a request callbackisCached: 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 testNote: 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 covIt will generate a coverage folder with the coverage report.
License
MIT
More details in the LICENSE file in root folder.