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.
Map of runnable interdependent operations
var OpsMap = require('opsmap');
var UserModel = require('./models/user.js');
var BlogModel = require('./models/blog.js');
// declare map of interdependent operations
var blog = new OpsMap('blog');
blog.set('username', 'edinella'); // already resolved values can be setted
blog.op('user', function() {
return UserModel.findOne({username: 'edinella'}).exec(); // returns a promise
});
blog.op('userPosts', function(user) {
return BlogModel.find({author: user.id}).exec();
});
// run userPosts operation, returns a promise
blog.run('userPosts').then(yep).fail(nope);
// handle results
function yep(result) {
console.log(result);
}
// handle errors
function nope(err) {
console.error(err);
}
Install with NPM:
npm install --save opsmap
Then require it:
var OpsMap = require('opsmap');
constructor(alias): create a new OpsMap with an alias
To produce the instance, OpsMap
should be called with new
operator.
var report = new OpsMap('report');
set(token, value): defines a value for injection (alias: setCache)
Register the final value.
report.set('dateFormat', 'DD/MM/YYYY HH:mm:ss');
op(token, factoryFn): defines a operation that generates a value for injection (alias: operation)
To produce the instance, factoryFn
will be called once (with instance context) and its result will be used.
The factoryFn
function arguments should be the tokens of the operations that we need resolved here.
report.op('data', function(filters){
return MyModel.find(filters).exec();
});
run(token): runs an operation, returns a promise
If any operation throws an error or gets rejected, and you omit the rejection handler, the execution will be stopped and error would be forwarded to this resultant promise.
// result is a promise
var myStats = report.run('stats');
// handle results
myStats.then(function(result) {
console.log(result);
});
// handle errors, including those unhandled from inside operations
myStats.fail(function(err) {
console.error(err);
});
FAQs
Map of runnable interdependent operations
We found that opsmap 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.
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.