Eric Foster d5378345de connection between front end and database | преди 6 години | |
---|---|---|
.. | ||
test | преди 6 години | |
.jshintrc | преди 6 години | |
.npmignore | преди 6 години | |
.testem.json | преди 6 години | |
.travis.yml | преди 6 години | |
LICENCE | преди 6 години | |
README.md | преди 6 години | |
index.js | преди 6 години | |
package.json | преди 6 години |
Cache a continuable
var cache = require("continuable-cache")
var fs = require("fs")
var readFile = function (uri) { return function (cb) {
fs.readFile(uri, cb)
} }
var continuableFile = readFile("./package.json")
var cached = cache(continuableFile)
// will only do one file read operation
cached(function (err, file) {
/* calls out to fs.readFile */
})
cached(function (err, file) {
/* get's either err or file from cache in cached */
})
npm install continuable-cache