![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
hmpo-cached-model
Advanced tools
Cached polling model.
Poll an API at a given interval and save the data to a data storoe such as redis. Multiple nodes can synchronise by sharing the redis instance and key.
const HmpoCachedModel = require('hmpo-cached-model');
let redisFactory = {
getClient() {
return redisInstance;
}
}
let model = new HmpoCachedModel(
{ // optional seed data
foo: 'bar',
boo: 'baz'
},
{ // options
url: 'http://example.com/api',
key: 'root-key',
store: redisFactory,
storeInterval: 1000,
apiInterval: 2000
}
);
// start polling
model.start();
let data = model.get('data');
// stop polling
countriesLib.stop();
If the API returns an object, all keys are saved to the model, otherwise the data from the API is saved to the data
key.
Extend and override parse()
to change the way the incomming data from the API is processed.
The deprecated request
library has been replaced with got
in hmpo-model
.
The new got
library doesn't automativally use the proxy environment variables so you would need to use something like global-agent
in your
app if you need to specify proxies by environment arguments.
FAQs
Cached polling model
The npm package hmpo-cached-model receives a total of 91 weekly downloads. As such, hmpo-cached-model popularity was classified as not popular.
We found that hmpo-cached-model demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.