Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
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-caches-model');
let model = new HmpoCachedModel(
{ // optional seed data
foo: 'bar',
boo: 'baz'
},
{ // options
url: 'http://example.com/api',
key: 'root-key',
store: redisInstance,
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.
FAQs
Cached polling model
The npm package hmpo-cached-model receives a total of 15 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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.