Comparing version 0.1.19 to 1.0.1
@@ -34,3 +34,3 @@ // Copyright Teleportd | ||
* evict: evict, | ||
* timeout: ... }, cb); // cb(err, value) | ||
* timeout: 2000 }, cb); // cb(err, value) | ||
* | ||
@@ -162,7 +162,7 @@ * These are the `getter` params: | ||
* @param key to identify the cached value | ||
* @param options {getter, timeout} | ||
* @param options {getter, evict, timeout} | ||
* getter: closure for getting the value to be cached | ||
* evict: called when the value is evicted | ||
* (the one passed when getter is used) | ||
* timeout: absolute time to invalidate the value | ||
* timeout: delay before invalidating the value | ||
* @param cb(err, value) the async callback to retrieve the value | ||
@@ -169,0 +169,0 @@ */ |
@@ -32,2 +32,4 @@ // Copyright Teleportd | ||
var cfg = require("./cfg.js"); | ||
var factory = require("./factory.js"); | ||
var async = require('async'); | ||
@@ -49,3 +51,3 @@ exports.method = base.method; | ||
exports.mplex = mplex.mplex; | ||
exports.async = async; | ||
@@ -57,1 +59,4 @@ exports.populateConfig = cfg.populateConfig; | ||
exports.b64decode = b64.b64decode; | ||
exports.factory = factory.factory; | ||
exports.factory_expose = factory.factory_expose; |
{ | ||
"name": "fwk", | ||
"version": "0.1.19", | ||
"version": "1.0.1", | ||
"description": "Simple JS framework for node.js", | ||
@@ -13,3 +13,4 @@ "keywords": ["fwk", "node"], | ||
"dependencies": { | ||
"should": "0.6.x" | ||
"should": "0.6.x", | ||
"async": "0.1.x" | ||
}, | ||
@@ -16,0 +17,0 @@ "main" : "./lib/fwk", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Non-existent author
Supply chain riskThe package was published by an npm account that no longer exists.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
0
0
47992
2
15
1425
+ Addedasync@0.1.x
+ Addedasync@0.1.22(transitive)