fresh-promise

0.0.3 • Public • Published

fresh-promsie

NPM Version Build Status

promise that keeps itself fresh

var FreshPromise = require("fresh-promise");
 
var cached = new FreshPromise(5000/*ttl*/, function() {
    return Promise.resolve(Math.random());
});
 
cached.then(...);
cached.then(...);  // should be the same
 
sleep(5000).then(...);  // promise should be updated

Readme

Keywords

Package Sidebar

Install

npm i fresh-promise

Weekly Downloads

0

Version

0.0.3

License

MIT

Last publish

Collaborators

  • zf