Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
URL key-value cache.
Node.js >= 0.10
is required; < 4.0
will need an Object.assign
polyfill. To install, type this at the command line:
npm install urlcache
var UrlCache = require("urlcache");
var cache = new UrlCache(options);
Note: all instances of url
can be either a String
or a url.parse()
-compatible Object
.
Removes the url
key-value pair. If the url
argument is not defined, all pairs will be removed.
Returns the stored value of url
. If no such value exists, undefined
will be returned.
Returns the number of stored key-value pairs.
Stores value
(any type) into url
key. Optionally, define expiryTime
to override options.expiryTime
.
cache.set("url", {"key":"value"});
cache.get("url"); //=> {"key":"value"}
cache.set("url", new Promise(function(resolve, reject) {
// set value after some delayed event
setTimeout(function() {
resolve("value");
}, 500);
});
Promise.resolve(cache.get("url")).then(function(value) {
console.log(value); //=> "value"
});
Type: Object
Default value: see urlobj.parse() options
A map of protocol default ports for options.normalizeUrls
.
Type: Number
Default value: Infinity
The number of milliseconds in which a cached value should be considered valid.
Type: Boolean
Default value: true
When true
, will remove unnecessary URL parts in order to avoid duplicates in cache.
Type: Boolean
Default Value: true
When true
, will remove #hashes
from URLs. They are most likely not useful to you because they are local to the document that contains them.
.length()
and removed Object.assign()
polyfillPromise
-based APIoptions.defaultPorts
, more testsFAQs
URL key-value cache.
The npm package urlcache receives a total of 2,345 weekly downloads. As such, urlcache popularity was classified as popular.
We found that urlcache demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.